Plugin Directory

Changeset 3238307


Ignore:
Timestamp:
02/11/2025 06:12:05 AM (14 months ago)
Author:
iksstudio
Message:

Release 1.12.5

Location:
iks-menu/trunk
Files:
7 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • iks-menu/trunk/iks-menu.php

    r3238106 r3238307  
    1414 * Plugin Name:       Iks Menu
    1515 * Description:       Super Customizable Accordion Menu. Was made with attention to details.
    16  * Version:           1.12.4
     16 * Version:           1.12.5
    1717 * Author:            IksStudio
    1818 * Author URI:        https://iks-menu.com
  • iks-menu/trunk/includes/render/MenuRenderer.php

    r3238106 r3238307  
    133133        $classes .= ( $disable_links ? RenderUtils::sub_class( $class, "link-disabled" ) : "" );
    134134        // Custom classes
    135         $custom_classes = array_filter( $term["classes"], 'strlen' );
     135        $custom_classes = ( is_array( $term["classes"] ) ? array_filter( $term["classes"], 'strlen' ) : [] );
    136136        $has_custom_classes = count( $custom_classes ) > 0;
    137         $classes .= ( $has_custom_classes ? " " . implode( " ", $term["classes"] ) : "" );
     137        $classes .= ( $has_custom_classes ? " " . implode( " ", $custom_classes ) : "" );
    138138        // Expansion
    139139        if ( Utils::get( $term, "is_expanded" ) ) {
  • iks-menu/trunk/readme.txt

    r3238106 r3238307  
    55Tested up to: 6.7
    66Requires PHP: 5.4
    7 Stable tag: 1.12.4
     7Stable tag: 1.12.5
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    124124* Translate plugin into other languages
    125125
     126= 1.12.5 - 2025-02-11 =
     127* Fixed: bug in PHP 8.0+
     128
    126129= 1.12.4 - 2025-02-10 =
    127130* Added: Support for custom CSS Classes (for Custom Menus)
Note: See TracChangeset for help on using the changeset viewer.