Plugin Directory

Changeset 3073721


Ignore:
Timestamp:
04/19/2024 10:28:47 AM (22 months ago)
Author:
lando1982
Message:

Committing 2.2.11 to trunk

Location:
taxonomy-filter/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • taxonomy-filter/trunk/readme.txt

    r3032071 r3073721  
    44Requires at least: 4.0
    55Tested up to: 5.9
    6 Stable tag: 2.2.10
     6Stable tag: 2.2.11
    77License: GPLv3
    88License URI: http://www.gnu.org/licenses/gpl.html
     
    7878== Changelog ==
    7979
     80= 2.2.11 - 2024-04-19 =
     81* Added hidden option check for avoid warnings
     82
    8083= 2.2.10 - 2024-02-06 =
    8184* Added nonce management on settings page
  • taxonomy-filter/trunk/taxonomy-filter-bulks.php

    r2040735 r3073721  
    5353    // Get hidden taxonomies
    5454    $options = get_option( TFP_OPTIONS );
    55     $hidden_taxonomies = $options->hidden;
     55    $hidden_taxonomies = ( isset( $options->hidden ) && ! empty( $options->hidden ) ) ? $options->hidden : null;
    5656    if ( empty( $hidden_taxonomies ) ) $hidden_taxonomies = array();
    5757
  • taxonomy-filter/trunk/taxonomy-filter-constants.php

    r3032071 r3073721  
    44 ***************************************************/
    55
    6 define( 'TFP_VERSION', '2.2.10' );
     6define( 'TFP_VERSION', '2.2.11' );
    77define( 'TFP_PREFIX', 'taxonomy_filter' );
    88define( 'TFP_OPTIONS', 'taxonomy_filter' );
  • taxonomy-filter/trunk/taxonomy-filter.php

    r3032071 r3073721  
    77Text Domain: taxonomy_filter
    88Domain Path: /languages/
    9 Version: 2.2.10
     9Version: 2.2.11
    1010License: GPL v3
    1111
Note: See TracChangeset for help on using the changeset viewer.