Plugin Directory

Changeset 3075575


Ignore:
Timestamp:
04/23/2024 09:31:40 AM (22 months ago)
Author:
lando1982
Message:

Committing 2.2.12 to trunk

Location:
taxonomy-filter/trunk
Files:
4 edited

Legend:

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

    r3073721 r3075575  
    33Tags: usability, filter, admin, category, tag, term, taxonomy, hierarchy, organize, manage
    44Requires at least: 4.0
    5 Tested up to: 5.9
    6 Stable tag: 2.2.11
     5Tested up to: 6.5.2
     6Stable tag: 2.2.12
    77License: GPLv3
    88License URI: http://www.gnu.org/licenses/gpl.html
     
    7878== Changelog ==
    7979
     80= 2.2.12 - 2024-04-23 =
     81* Added taxonomy rewrite field check for avoid warnings
     82
    8083= 2.2.11 - 2024-04-19 =
    8184* Added hidden option check for avoid warnings
  • taxonomy-filter/trunk/taxonomy-filter-constants.php

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

    r3032071 r3075575  
    124124                foreach ( $taxonomies as $taxonomy ) {
    125125                    // Retrieve current taxonomy data
    126                     $slug = $taxonomy->rewrite[ 'slug' ];
     126                    $slug = is_bool( $taxonomy->rewrite ) || empty( $taxonomy->rewrite[ 'slug' ] ) ? '': $taxonomy->rewrite[ 'slug' ];
    127127                    $name = $taxonomy->name;
    128128
  • taxonomy-filter/trunk/taxonomy-filter.php

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