Plugin Directory

Changeset 3079001


Ignore:
Timestamp:
04/29/2024 08:24:52 PM (23 months ago)
Author:
wickedplugins
Message:

Update to version 3.0.4 from GitHub

Location:
wicked-folders
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wicked-folders/tags/3.0.4/classes/class-screen-state.php

    r3043757 r3079001  
    131131        }
    132132
    133         $this->expanded_folders = array_unique( $this->expanded_folders );
     133        $this->expanded_folders = array_values( array_unique( $this->expanded_folders ) );
    134134
    135135        // Filter tree pane width
  • wicked-folders/tags/3.0.4/readme.txt

    r3068593 r3079001  
    44Requires at least: 4.6
    55Tested up to: 6.5
    6 Stable tag: 3.0.3
     6Stable tag: 3.0.4
    77License: GPLv2 or later
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    144144== Changelog ==
    145145
     146= 3.0.4 (April 29, 2024) =
     147* Fix: folder pane not appearing in some instances due to JavaScript error caused by expanded folders data being encoded as an object instead of an array
     148
    146149= 3.0.3 (April 10, 2024) =
    147150* Fix: HTML character entities (e.g. &) appearing in folder names
  • wicked-folders/tags/3.0.4/wicked-folders.php

    r3068593 r3079001  
    55Plugin URI: https://wickedplugins.com/wicked-folders/
    66Description: Organize your pages into folders.
    7 Version: 3.0.3
     7Version: 3.0.4
    88Author: Wicked Plugins
    99Author URI: https://wickedplugins.com/
  • wicked-folders/trunk/classes/class-screen-state.php

    r3043757 r3079001  
    131131        }
    132132
    133         $this->expanded_folders = array_unique( $this->expanded_folders );
     133        $this->expanded_folders = array_values( array_unique( $this->expanded_folders ) );
    134134
    135135        // Filter tree pane width
  • wicked-folders/trunk/readme.txt

    r3068593 r3079001  
    44Requires at least: 4.6
    55Tested up to: 6.5
    6 Stable tag: 3.0.3
     6Stable tag: 3.0.4
    77License: GPLv2 or later
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    144144== Changelog ==
    145145
     146= 3.0.4 (April 29, 2024) =
     147* Fix: folder pane not appearing in some instances due to JavaScript error caused by expanded folders data being encoded as an object instead of an array
     148
    146149= 3.0.3 (April 10, 2024) =
    147150* Fix: HTML character entities (e.g. &) appearing in folder names
  • wicked-folders/trunk/wicked-folders.php

    r3068593 r3079001  
    55Plugin URI: https://wickedplugins.com/wicked-folders/
    66Description: Organize your pages into folders.
    7 Version: 3.0.3
     7Version: 3.0.4
    88Author: Wicked Plugins
    99Author URI: https://wickedplugins.com/
Note: See TracChangeset for help on using the changeset viewer.