Changeset 2588045
- Timestamp:
- 08/24/2021 08:41:48 PM (4 years ago)
- Location:
- gravity-forms-custom-post-types
- Files:
-
- 6 edited
- 1 copied
-
tags/3.1.25 (copied) (copied from gravity-forms-custom-post-types/trunk)
-
tags/3.1.25/gfcptaddon.php (modified) (2 diffs)
-
tags/3.1.25/gfcptaddonbase.php (modified) (2 diffs)
-
tags/3.1.25/readme.txt (modified) (1 diff)
-
trunk/gfcptaddon.php (modified) (2 diffs)
-
trunk/gfcptaddonbase.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
gravity-forms-custom-post-types/tags/3.1.25/gfcptaddon.php
r2578858 r2588045 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 46 Version: 3.1.25 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 4';19 private static $version = '3.1.25'; 20 20 private static $min_gravityforms_version = '1.9.3'; 21 21 -
gravity-forms-custom-post-types/tags/3.1.25/gfcptaddonbase.php
r2578858 r2588045 310 310 } 311 311 312 function load_post_type_choices( $post_type, $first_choice = '', $field ) {312 function load_post_type_choices( $post_type, $first_choice, $field ) { 313 313 $posts = $this->load_posts_hierarchical( $post_type, $field->formId, $field->id ); 314 314 if ( $first_choice === '' || $first_choice === 'First Choice' ) { … … 410 410 * Load any taxonomy terms 411 411 */ 412 function load_taxonomy_choices( $taxonomy, $type, $first_choice = '', $field ) {412 function load_taxonomy_choices( $taxonomy, $type, $first_choice, $field ) { 413 413 $choices = array(); 414 414 -
gravity-forms-custom-post-types/tags/3.1.25/readme.txt
r2578858 r2588045 81 81 82 82 == Changelog == 83 84 = 3.1.25 = 85 * Fixed PHP 8 deprecation notices about required parameters after optional parameters. 83 86 84 87 = 3.1.24 = -
gravity-forms-custom-post-types/trunk/gfcptaddon.php
r2578858 r2588045 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 46 Version: 3.1.25 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 4';19 private static $version = '3.1.25'; 20 20 private static $min_gravityforms_version = '1.9.3'; 21 21 -
gravity-forms-custom-post-types/trunk/gfcptaddonbase.php
r2578858 r2588045 310 310 } 311 311 312 function load_post_type_choices( $post_type, $first_choice = '', $field ) {312 function load_post_type_choices( $post_type, $first_choice, $field ) { 313 313 $posts = $this->load_posts_hierarchical( $post_type, $field->formId, $field->id ); 314 314 if ( $first_choice === '' || $first_choice === 'First Choice' ) { … … 410 410 * Load any taxonomy terms 411 411 */ 412 function load_taxonomy_choices( $taxonomy, $type, $first_choice = '', $field ) {412 function load_taxonomy_choices( $taxonomy, $type, $first_choice, $field ) { 413 413 $choices = array(); 414 414 -
gravity-forms-custom-post-types/trunk/readme.txt
r2578858 r2588045 81 81 82 82 == Changelog == 83 84 = 3.1.25 = 85 * Fixed PHP 8 deprecation notices about required parameters after optional parameters. 83 86 84 87 = 3.1.24 =
Note: See TracChangeset
for help on using the changeset viewer.