Plugin Directory

Changeset 3419759


Ignore:
Timestamp:
12/15/2025 07:30:57 AM (3 months ago)
Author:
CRMPerks
Message:

releasing 1.4.3

Location:
cf7-hubspot
Files:
5 edited
10 copied

Legend:

Unmodified
Added
Removed
  • cf7-hubspot/tags/1.4.3/api/api.php

    r3309555 r3419759  
    995995if( !in_array($obj_type,array('zTICKET.','zCOMPANY.')) ){ $obj_type=''; } //company name field in contact needs COMPANY.name   
    996996$v['value']=$this->verify_val($v['value'],$type);
    997 $post['fields'][]=array('name'=>$obj_type.$k,'value'=>$v['value'],'objectTypeId'=>$meta['fields'][$k]['object']);
     997$post['fields'][]=array('name'=>$obj_type.$k,'value'=>$v['value'],'objectTypeId'=>!empty($meta['fields'][$k]['object']) ? $meta['fields'][$k]['object']: null);
    998998} }
    999999
  • cf7-hubspot/tags/1.4.3/cf7-hubspot.php

    r3382751 r3419759  
    33* Plugin Name: WP Contact Form HubSpot
    44* Description: Integrates Contact Form 7 and <a href="https://wordpress.org/plugins/contact-form-entries/">Contact Form Entries Plugin</a> and many other forms with HubSpot allowing form submissions to be automatically sent to your HubSpot account
    5 * Version: 1.4.2
     5* Version: 1.4.3
    66* Requires at least: 3.8
    77* Author URI: https://www.crmperks.com
     
    2626  public  $id = "vxcf_hubspot";
    2727  public  $domain = "vxcf-hubspot";
    28   public  $version = "1.4.2";
     28  public  $version = "1.4.3";
    2929  public  $update_id = "6000001";
    3030  public  $min_cf_version = "1.0";
  • cf7-hubspot/tags/1.4.3/includes/data.php

    r2975126 r3419759  
    245245  }
    246246  if($this->post('orderby')!=""){
    247   $sql_end.=' order by '.esc_sql($this->post('orderby'));   
     247  $sql_end.=' order by '.sanitize_sql_orderby($this->post('orderby'));   
    248248  if($this->post('order')!="" && in_array($this->post('order'),array("asc","desc"))){
    249249  $sql_end.=' '.$this->post('order');
  • cf7-hubspot/tags/1.4.3/readme.txt

    r3382751 r3419759  
    33Tags: contact form 7, contact form 7 hubspot, elementor forms hubspot, wpforms hubspot, ninja forms hubspot
    44Requires at least: 3.8
    5 Tested up to: 6.8
    6 Stable tag: 1.4.2
    7 Version: 1.4.2
     5Tested up to: 6.9
     6Stable tag: 1.4.3
     7Version: 1.4.3
    88Requires PHP: 5.3
    99License: GPLv3
     
    159159== Changelog ==
    160160
     161= 1.4.3 =
     162* fixed "empty object key php warning" issue.
     163
    161164= 1.4.2 =
    162165* fixed "invalid json" issue.
  • cf7-hubspot/trunk/api/api.php

    r3309555 r3419759  
    995995if( !in_array($obj_type,array('zTICKET.','zCOMPANY.')) ){ $obj_type=''; } //company name field in contact needs COMPANY.name   
    996996$v['value']=$this->verify_val($v['value'],$type);
    997 $post['fields'][]=array('name'=>$obj_type.$k,'value'=>$v['value'],'objectTypeId'=>$meta['fields'][$k]['object']);
     997$post['fields'][]=array('name'=>$obj_type.$k,'value'=>$v['value'],'objectTypeId'=>!empty($meta['fields'][$k]['object']) ? $meta['fields'][$k]['object']: null);
    998998} }
    999999
  • cf7-hubspot/trunk/cf7-hubspot.php

    r3382751 r3419759  
    33* Plugin Name: WP Contact Form HubSpot
    44* Description: Integrates Contact Form 7 and <a href="https://wordpress.org/plugins/contact-form-entries/">Contact Form Entries Plugin</a> and many other forms with HubSpot allowing form submissions to be automatically sent to your HubSpot account
    5 * Version: 1.4.2
     5* Version: 1.4.3
    66* Requires at least: 3.8
    77* Author URI: https://www.crmperks.com
     
    2626  public  $id = "vxcf_hubspot";
    2727  public  $domain = "vxcf-hubspot";
    28   public  $version = "1.4.2";
     28  public  $version = "1.4.3";
    2929  public  $update_id = "6000001";
    3030  public  $min_cf_version = "1.0";
  • cf7-hubspot/trunk/includes/data.php

    r2975126 r3419759  
    245245  }
    246246  if($this->post('orderby')!=""){
    247   $sql_end.=' order by '.esc_sql($this->post('orderby'));   
     247  $sql_end.=' order by '.sanitize_sql_orderby($this->post('orderby'));   
    248248  if($this->post('order')!="" && in_array($this->post('order'),array("asc","desc"))){
    249249  $sql_end.=' '.$this->post('order');
  • cf7-hubspot/trunk/readme.txt

    r3382751 r3419759  
    33Tags: contact form 7, contact form 7 hubspot, elementor forms hubspot, wpforms hubspot, ninja forms hubspot
    44Requires at least: 3.8
    5 Tested up to: 6.8
    6 Stable tag: 1.4.2
    7 Version: 1.4.2
     5Tested up to: 6.9
     6Stable tag: 1.4.3
     7Version: 1.4.3
    88Requires PHP: 5.3
    99License: GPLv3
     
    159159== Changelog ==
    160160
     161= 1.4.3 =
     162* fixed "empty object key php warning" issue.
     163
    161164= 1.4.2 =
    162165* fixed "invalid json" issue.
Note: See TracChangeset for help on using the changeset viewer.