Plugin Directory

Changeset 2588045


Ignore:
Timestamp:
08/24/2021 08:41:48 PM (4 years ago)
Author:
claygriffiths
Message:

Update to version 3.1.25 from GitHub

Location:
gravity-forms-custom-post-types
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • gravity-forms-custom-post-types/tags/3.1.25/gfcptaddon.php

    r2578858 r2588045  
    44Plugin URI: https://gravitywiz.com/
    55Description: Map your Gravity-Forms-generated posts to a custom post type and/or custom taxonomies.
    6 Version: 3.1.24
     6Version: 3.1.25
    77Author: Gravity Wiz
    88Author URI: https://gravitywiz.com/
     
    1717    private static $name                     = 'Gravity Forms + Custom Post Types';
    1818    private static $slug                     = 'GFCPTAddon';
    19     private static $version                  = '3.1.24';
     19    private static $version                  = '3.1.25';
    2020    private static $min_gravityforms_version = '1.9.3';
    2121
  • gravity-forms-custom-post-types/tags/3.1.25/gfcptaddonbase.php

    r2578858 r2588045  
    310310        }
    311311
    312         function load_post_type_choices( $post_type, $first_choice = '', $field ) {
     312        function load_post_type_choices( $post_type, $first_choice, $field ) {
    313313            $posts = $this->load_posts_hierarchical( $post_type, $field->formId, $field->id );
    314314            if ( $first_choice === '' || $first_choice === 'First Choice' ) {
     
    410410         * Load any taxonomy terms
    411411         */
    412         function load_taxonomy_choices( $taxonomy, $type, $first_choice = '', $field ) {
     412        function load_taxonomy_choices( $taxonomy, $type, $first_choice, $field ) {
    413413            $choices = array();
    414414
  • gravity-forms-custom-post-types/tags/3.1.25/readme.txt

    r2578858 r2588045  
    8181
    8282== Changelog ==
     83
     84= 3.1.25 =
     85* Fixed PHP 8 deprecation notices about required parameters after optional parameters.
    8386
    8487= 3.1.24 =
  • gravity-forms-custom-post-types/trunk/gfcptaddon.php

    r2578858 r2588045  
    44Plugin URI: https://gravitywiz.com/
    55Description: Map your Gravity-Forms-generated posts to a custom post type and/or custom taxonomies.
    6 Version: 3.1.24
     6Version: 3.1.25
    77Author: Gravity Wiz
    88Author URI: https://gravitywiz.com/
     
    1717    private static $name                     = 'Gravity Forms + Custom Post Types';
    1818    private static $slug                     = 'GFCPTAddon';
    19     private static $version                  = '3.1.24';
     19    private static $version                  = '3.1.25';
    2020    private static $min_gravityforms_version = '1.9.3';
    2121
  • gravity-forms-custom-post-types/trunk/gfcptaddonbase.php

    r2578858 r2588045  
    310310        }
    311311
    312         function load_post_type_choices( $post_type, $first_choice = '', $field ) {
     312        function load_post_type_choices( $post_type, $first_choice, $field ) {
    313313            $posts = $this->load_posts_hierarchical( $post_type, $field->formId, $field->id );
    314314            if ( $first_choice === '' || $first_choice === 'First Choice' ) {
     
    410410         * Load any taxonomy terms
    411411         */
    412         function load_taxonomy_choices( $taxonomy, $type, $first_choice = '', $field ) {
     412        function load_taxonomy_choices( $taxonomy, $type, $first_choice, $field ) {
    413413            $choices = array();
    414414
  • gravity-forms-custom-post-types/trunk/readme.txt

    r2578858 r2588045  
    8181
    8282== Changelog ==
     83
     84= 3.1.25 =
     85* Fixed PHP 8 deprecation notices about required parameters after optional parameters.
    8386
    8487= 3.1.24 =
Note: See TracChangeset for help on using the changeset viewer.