Changeset 3419759
- Timestamp:
- 12/15/2025 07:30:57 AM (3 months ago)
- Location:
- cf7-hubspot
- Files:
-
- 5 edited
- 10 copied
-
tags/1.4.3 (copied) (copied from cf7-hubspot/trunk)
-
tags/1.4.3/api/api.php (copied) (copied from cf7-hubspot/trunk/api/api.php) (1 diff)
-
tags/1.4.3/cf7-hubspot.php (copied) (copied from cf7-hubspot/trunk/cf7-hubspot.php) (2 diffs)
-
tags/1.4.3/includes/data.php (modified) (1 diff)
-
tags/1.4.3/includes/plugin-pages.php (copied) (copied from cf7-hubspot/trunk/includes/plugin-pages.php)
-
tags/1.4.3/readme.txt (copied) (copied from cf7-hubspot/trunk/readme.txt) (2 diffs)
-
tags/1.4.3/templates/feed-account.php (copied) (copied from cf7-hubspot/trunk/templates/feed-account.php)
-
tags/1.4.3/templates/fields-mapping.php (copied) (copied from cf7-hubspot/trunk/templates/fields-mapping.php)
-
tags/1.4.3/templates/logs.php (copied) (copied from cf7-hubspot/trunk/templates/logs.php)
-
tags/1.4.3/templates/setting.php (copied) (copied from cf7-hubspot/trunk/templates/setting.php)
-
tags/1.4.3/wp/crmperks-notices.php (copied) (copied from cf7-hubspot/trunk/wp/crmperks-notices.php)
-
trunk/api/api.php (modified) (1 diff)
-
trunk/cf7-hubspot.php (modified) (2 diffs)
-
trunk/includes/data.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cf7-hubspot/tags/1.4.3/api/api.php
r3309555 r3419759 995 995 if( !in_array($obj_type,array('zTICKET.','zCOMPANY.')) ){ $obj_type=''; } //company name field in contact needs COMPANY.name 996 996 $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); 998 998 } } 999 999 -
cf7-hubspot/tags/1.4.3/cf7-hubspot.php
r3382751 r3419759 3 3 * Plugin Name: WP Contact Form HubSpot 4 4 * 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. 25 * Version: 1.4.3 6 6 * Requires at least: 3.8 7 7 * Author URI: https://www.crmperks.com … … 26 26 public $id = "vxcf_hubspot"; 27 27 public $domain = "vxcf-hubspot"; 28 public $version = "1.4. 2";28 public $version = "1.4.3"; 29 29 public $update_id = "6000001"; 30 30 public $min_cf_version = "1.0"; -
cf7-hubspot/tags/1.4.3/includes/data.php
r2975126 r3419759 245 245 } 246 246 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')); 248 248 if($this->post('order')!="" && in_array($this->post('order'),array("asc","desc"))){ 249 249 $sql_end.=' '.$this->post('order'); -
cf7-hubspot/tags/1.4.3/readme.txt
r3382751 r3419759 3 3 Tags: contact form 7, contact form 7 hubspot, elementor forms hubspot, wpforms hubspot, ninja forms hubspot 4 4 Requires at least: 3.8 5 Tested up to: 6. 86 Stable tag: 1.4. 27 Version: 1.4. 25 Tested up to: 6.9 6 Stable tag: 1.4.3 7 Version: 1.4.3 8 8 Requires PHP: 5.3 9 9 License: GPLv3 … … 159 159 == Changelog == 160 160 161 = 1.4.3 = 162 * fixed "empty object key php warning" issue. 163 161 164 = 1.4.2 = 162 165 * fixed "invalid json" issue. -
cf7-hubspot/trunk/api/api.php
r3309555 r3419759 995 995 if( !in_array($obj_type,array('zTICKET.','zCOMPANY.')) ){ $obj_type=''; } //company name field in contact needs COMPANY.name 996 996 $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); 998 998 } } 999 999 -
cf7-hubspot/trunk/cf7-hubspot.php
r3382751 r3419759 3 3 * Plugin Name: WP Contact Form HubSpot 4 4 * 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. 25 * Version: 1.4.3 6 6 * Requires at least: 3.8 7 7 * Author URI: https://www.crmperks.com … … 26 26 public $id = "vxcf_hubspot"; 27 27 public $domain = "vxcf-hubspot"; 28 public $version = "1.4. 2";28 public $version = "1.4.3"; 29 29 public $update_id = "6000001"; 30 30 public $min_cf_version = "1.0"; -
cf7-hubspot/trunk/includes/data.php
r2975126 r3419759 245 245 } 246 246 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')); 248 248 if($this->post('order')!="" && in_array($this->post('order'),array("asc","desc"))){ 249 249 $sql_end.=' '.$this->post('order'); -
cf7-hubspot/trunk/readme.txt
r3382751 r3419759 3 3 Tags: contact form 7, contact form 7 hubspot, elementor forms hubspot, wpforms hubspot, ninja forms hubspot 4 4 Requires at least: 3.8 5 Tested up to: 6. 86 Stable tag: 1.4. 27 Version: 1.4. 25 Tested up to: 6.9 6 Stable tag: 1.4.3 7 Version: 1.4.3 8 8 Requires PHP: 5.3 9 9 License: GPLv3 … … 159 159 == Changelog == 160 160 161 = 1.4.3 = 162 * fixed "empty object key php warning" issue. 163 161 164 = 1.4.2 = 162 165 * fixed "invalid json" issue.
Note: See TracChangeset
for help on using the changeset viewer.