Changeset 2578858
- Timestamp:
- 08/05/2021 03:34:46 PM (4 years ago)
- Location:
- gravity-forms-custom-post-types
- Files:
-
- 6 edited
- 1 copied
-
tags/3.1.24 (copied) (copied from gravity-forms-custom-post-types/trunk)
-
tags/3.1.24/gfcptaddon.php (modified) (2 diffs)
-
tags/3.1.24/gfcptaddonbase.php (modified) (1 diff)
-
tags/3.1.24/readme.txt (modified) (1 diff)
-
trunk/gfcptaddon.php (modified) (2 diffs)
-
trunk/gfcptaddonbase.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
gravity-forms-custom-post-types/tags/3.1.24/gfcptaddon.php
r2578209 r2578858 4 4 Plugin URI: https://gravitywiz.com/ 5 5 Description: Map your Gravity-Forms-generated posts to a custom post type and/or custom taxonomies. 6 Version: 3.1.2 36 Version: 3.1.24 7 7 Author: Gravity Wiz 8 8 Author URI: https://gravitywiz.com/ … … 17 17 private static $name = 'Gravity Forms + Custom Post Types'; 18 18 private static $slug = 'GFCPTAddon'; 19 private static $version = '3.1.2 3';19 private static $version = '3.1.24'; 20 20 private static $min_gravityforms_version = '1.9.3'; 21 21 -
gravity-forms-custom-post-types/tags/3.1.24/gfcptaddonbase.php
r2578209 r2578858 372 372 } 373 373 374 // Choices check is not sufficient in cases where choices were accidentally saved to non-choice fields. 375 if ( ! in_array( $field->get_input_type(), array( 'select', 'multiselect', 'radio', 'checkbox' ), true ) ) { 376 // This clears any choices stored on non-choice based fields due to an earlier bug in GF+CPT. See HS#25737 377 $field['choices'] = ''; 378 return; 379 } 380 374 381 $first_choice = rgars( $field, 'choices/0/text' ); 375 382 $field['choices'] = $this->load_taxonomy_choices( $taxonomy, $field['type'], $first_choice, $field ); -
gravity-forms-custom-post-types/tags/3.1.24/readme.txt
r2578209 r2578858 81 81 82 82 == Changelog == 83 84 = 3.1.24 = 85 * Fixed an issue where taxonomy terms may be saved as choices on non-choice based fields. 83 86 84 87 = 3.1.23 = -
gravity-forms-custom-post-types/trunk/gfcptaddon.php
r2578209 r2578858 4 4 Plugin URI: https://gravitywiz.com/ 5 5 Description: Map your Gravity-Forms-generated posts to a custom post type and/or custom taxonomies. 6 Version: 3.1.2 36 Version: 3.1.24 7 7 Author: Gravity Wiz 8 8 Author URI: https://gravitywiz.com/ … … 17 17 private static $name = 'Gravity Forms + Custom Post Types'; 18 18 private static $slug = 'GFCPTAddon'; 19 private static $version = '3.1.2 3';19 private static $version = '3.1.24'; 20 20 private static $min_gravityforms_version = '1.9.3'; 21 21 -
gravity-forms-custom-post-types/trunk/gfcptaddonbase.php
r2578209 r2578858 372 372 } 373 373 374 // Choices check is not sufficient in cases where choices were accidentally saved to non-choice fields. 375 if ( ! in_array( $field->get_input_type(), array( 'select', 'multiselect', 'radio', 'checkbox' ), true ) ) { 376 // This clears any choices stored on non-choice based fields due to an earlier bug in GF+CPT. See HS#25737 377 $field['choices'] = ''; 378 return; 379 } 380 374 381 $first_choice = rgars( $field, 'choices/0/text' ); 375 382 $field['choices'] = $this->load_taxonomy_choices( $taxonomy, $field['type'], $first_choice, $field ); -
gravity-forms-custom-post-types/trunk/readme.txt
r2578209 r2578858 81 81 82 82 == Changelog == 83 84 = 3.1.24 = 85 * Fixed an issue where taxonomy terms may be saved as choices on non-choice based fields. 83 86 84 87 = 3.1.23 =
Note: See TracChangeset
for help on using the changeset viewer.