Plugin Directory

Changeset 3478817


Ignore:
Timestamp:
03/10/2026 06:52:13 AM (3 weeks ago)
Author:
Wpcalc
Message:

Update Side Menu Lite to version 5.5.2

Location:
side-menu-lite
Files:
194 added
5 edited

Legend:

Unmodified
Added
Removed
  • side-menu-lite/trunk/README.txt

    r3408155 r3478817  
    66Tested up to: 6.9
    77Requires PHP: 7.4
    8 Stable tag: 5.5.1
     8Stable tag: 5.5.2
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    162162
    163163== Changelog ==
     164= 5.5.2 =
     165* Fixed: minor bug with Content::create()
     166* Fixed: minor bug with Settings::option()
     167* Fixed: grammar error in ListTable
    164168
    165169= 5.5.1=
  • side-menu-lite/trunk/classes/Admin/ListTable.php

    r3265037 r3478817  
    270270    public function get_bulk_actions(): array {
    271271        $actions = [
    272             'delete'     => __( 'Delate', 'side-menu-lite' ),
     272            'delete'     => __( 'Delete', 'side-menu-lite' ),
    273273            'activate'   => __( 'Activate', 'side-menu-lite' ),
    274274            'deactivate' => __( 'Deactivate', 'side-menu-lite' ),
  • side-menu-lite/trunk/classes/Admin/Settings.php

    r3220191 r3478817  
    180180    }
    181181
    182     public static function option( $name, $option ) {
     182    public static function option( $name ) {
    183183        return $options[ $name ] ?? '';
    184184    }
  • side-menu-lite/trunk/classes/Maker/Content.php

    r3310206 r3478817  
    3737
    3838        if ( $count === 0 ) {
    39             return false;
     39            return '';
    4040        }
    4141
     
    255255                $menu .= '<span class="sm-link" data-smmenu-target="close">';
    256256                $menu .= $icon . $tooltip;
    257                 $menu .= '</a>';
     257                $menu .= '</span>';
    258258                break;
    259259        }
  • side-menu-lite/trunk/side-menu-lite.php

    r3388092 r3478817  
    44 *  Plugin URI:        https://wordpress.org/plugins/side-menu-lite/
    55 *  Description:       Provide any extra content and functionality with the attention-grabbing side menu!
    6  *  Version:           5.5.1
     6 *  Version:           5.5.2
    77 *  Author:            Wow-Company
    88 *  Author URI:        https://wow-estore.com/
Note: See TracChangeset for help on using the changeset viewer.