Changeset 3425053
- Timestamp:
- 12/22/2025 05:51:21 AM (5 months ago)
- Location:
- gf-insightly
- Files:
-
- 2 edited
- 6 copied
-
tags/1.1.7 (copied) (copied from gf-insightly/trunk)
-
tags/1.1.7/api/api.php (copied) (copied from gf-insightly/trunk/api/api.php)
-
tags/1.1.7/gf-insightly.php (copied) (copied from gf-insightly/trunk/gf-insightly.php) (3 diffs)
-
tags/1.1.7/includes/edit-form.php (copied) (copied from gf-insightly/trunk/includes/edit-form.php)
-
tags/1.1.7/readme.txt (copied) (copied from gf-insightly/trunk/readme.txt) (2 diffs)
-
tags/1.1.7/templates/fields-mapping.php (copied) (copied from gf-insightly/trunk/templates/fields-mapping.php)
-
trunk/gf-insightly.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
gf-insightly/tags/1.1.7/gf-insightly.php
r3390519 r3425053 3 3 * Plugin Name: WP Gravity Forms Insightly 4 4 * Description: Integrates Gravity Forms with Insightly allowing form submissions to be automatically sent to your Insightly account 5 * Version: 1.1. 65 * Version: 1.1.7 6 6 * Requires at least: 3.8 7 7 * Author URI: https://www.crmperks.com … … 26 26 public $id = 'vxg_insightly'; 27 27 public $domain = 'vxg-insightly'; 28 public $version = "1.1. 6";28 public $version = "1.1.7"; 29 29 public $update_id = '300010'; 30 30 public $min_gravityforms_version = '1.3.9'; … … 489 489 if(is_numeric($gf_field_id)){ 490 490 $field = RGFormsModel::get_field($form, $gf_field_id); 491 if(isset($field->type) && in_array($field->type,array('list')) ){492 $value= maybe_unserialize($value);491 if(isset($field->type) && in_array($field->type,array('list')) && is_serialized($value) ){ 492 $value=unserialize($value, array('allowed_classes' => false)); 493 493 } 494 494 if( (isset($field->storageType) && $field->storageType == 'json') || $field->type == 'fileupload' ){ -
gf-insightly/tags/1.1.7/readme.txt
r3420326 r3425053 4 4 Requires at least: 3.8 5 5 Tested up to: 6.9 6 Stable tag: 1.1. 67 Version: 1.1. 66 Stable tag: 1.1.7 7 Version: 1.1.7 8 8 Requires PHP: 5.3 9 9 License: GPLv3 … … 112 112 == Changelog == 113 113 114 = 1.1.7 = 115 * fixed "list field" issue. 116 114 117 = 1.1.6 = 115 118 * fixed "map picklist fields" issue. -
gf-insightly/trunk/gf-insightly.php
r3390519 r3425053 3 3 * Plugin Name: WP Gravity Forms Insightly 4 4 * Description: Integrates Gravity Forms with Insightly allowing form submissions to be automatically sent to your Insightly account 5 * Version: 1.1. 65 * Version: 1.1.7 6 6 * Requires at least: 3.8 7 7 * Author URI: https://www.crmperks.com … … 26 26 public $id = 'vxg_insightly'; 27 27 public $domain = 'vxg-insightly'; 28 public $version = "1.1. 6";28 public $version = "1.1.7"; 29 29 public $update_id = '300010'; 30 30 public $min_gravityforms_version = '1.3.9'; … … 489 489 if(is_numeric($gf_field_id)){ 490 490 $field = RGFormsModel::get_field($form, $gf_field_id); 491 if(isset($field->type) && in_array($field->type,array('list')) ){492 $value= maybe_unserialize($value);491 if(isset($field->type) && in_array($field->type,array('list')) && is_serialized($value) ){ 492 $value=unserialize($value, array('allowed_classes' => false)); 493 493 } 494 494 if( (isset($field->storageType) && $field->storageType == 'json') || $field->type == 'fileupload' ){ -
gf-insightly/trunk/readme.txt
r3420326 r3425053 4 4 Requires at least: 3.8 5 5 Tested up to: 6.9 6 Stable tag: 1.1. 67 Version: 1.1. 66 Stable tag: 1.1.7 7 Version: 1.1.7 8 8 Requires PHP: 5.3 9 9 License: GPLv3 … … 112 112 == Changelog == 113 113 114 = 1.1.7 = 115 * fixed "list field" issue. 116 114 117 = 1.1.6 = 115 118 * fixed "map picklist fields" issue.
Note: See TracChangeset
for help on using the changeset viewer.