Changeset 2797366
- Timestamp:
- 10/11/2022 05:07:14 PM (3 years ago)
- Location:
- gravity-forms-custom-post-types
- Files:
-
- 6 edited
- 1 copied
-
tags/3.1.29 (copied) (copied from gravity-forms-custom-post-types/trunk)
-
tags/3.1.29/gfcptaddon.php (modified) (2 diffs)
-
tags/3.1.29/gfcptaddonbase.php (modified) (1 diff)
-
tags/3.1.29/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.29/gfcptaddon.php
r2797364 r2797366 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 86 Version: 3.1.29 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 8';19 private static $version = '3.1.29'; 20 20 private static $min_gravityforms_version = '1.9.3'; 21 21 -
gravity-forms-custom-post-types/tags/3.1.29/gfcptaddonbase.php
r2797364 r2797366 185 185 return true; 186 186 } 187 } else if ( is_array( $form_or_field, 'fields') ) {187 } else if ( is_array( rgar( $form_or_field, 'fields' ) ) ) { 188 188 foreach ( $form_or_field['fields'] as $field ) { 189 189 if ( $this->has_tax_enhanced_ui( $field ) ) { -
gravity-forms-custom-post-types/tags/3.1.29/readme.txt
r2797364 r2797366 81 81 82 82 == Changelog == 83 84 = 3.1.29 = 85 * Fixed PHP warning. 83 86 84 87 = 3.1.28 = -
gravity-forms-custom-post-types/trunk/gfcptaddon.php
r2797364 r2797366 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 86 Version: 3.1.29 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 8';19 private static $version = '3.1.29'; 20 20 private static $min_gravityforms_version = '1.9.3'; 21 21 -
gravity-forms-custom-post-types/trunk/gfcptaddonbase.php
r2797364 r2797366 185 185 return true; 186 186 } 187 } else if ( is_array( $form_or_field, 'fields') ) {187 } else if ( is_array( rgar( $form_or_field, 'fields' ) ) ) { 188 188 foreach ( $form_or_field['fields'] as $field ) { 189 189 if ( $this->has_tax_enhanced_ui( $field ) ) { -
gravity-forms-custom-post-types/trunk/readme.txt
r2797364 r2797366 81 81 82 82 == Changelog == 83 84 = 3.1.29 = 85 * Fixed PHP warning. 83 86 84 87 = 3.1.28 =
Note: See TracChangeset
for help on using the changeset viewer.