Skip to content

Commit 9f8e461

Browse files
committed
v4.5.4 release
Signed-off-by: Kev Provance <[email protected]>
1 parent fdf0600 commit 9f8e461

File tree

6 files changed

+12
-6
lines changed

6 files changed

+12
-6
lines changed

CHANGELOG.md

+1-1
Large diffs are not rendered by default.

class-redux-framework-plugin.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ private static function get_blog_ids() {
322322
if ( false === $result ) {
323323

324324
// WordPress says get_col is discouraged? I found no alternative. So...ignore! - kp.
325-
// phpcs:ignore WordPress.DB.DirectDatabaseQuery
325+
326326
$result = $wpdb->get_col( $wpdb->prepare( "SELECT blog_id FROM $wpdb->blogs WHERE archived = %s AND spam = %s AND deleted = %s", $var, $var, $var ) );
327327

328328
wp_cache_set( 'redux-blog-ids', $result );

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"main": "gulpfile.js",
44
"name": "redux-framework",
55
"author": "Team Redux",
6-
"version": "4.5.3",
6+
"version": "4.5.4",
77
"license": "GPL-3.0-or-later",
88
"repository": {
99
"type": "git",

readme.txt

+7-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: admin, options, theme options, plugin options, options framework
44
Requires at least: 5.0
55
Requires PHP: 7.4
66
Tested up to: 6.7
7-
Stable tag: 4.5.3
7+
Stable tag: 4.5.4
88
License: GPL-3.0+
99
License URI: http://www.gnu.org/licenses/gpl-3.0.txt
1010

@@ -122,6 +122,12 @@ NOTE: Redux is not intended to be used on its own. It requires a config file pro
122122

123123
== Changelog ==
124124

125+
= 4.5.4 =
126+
* Fixed: Filesystem class $creds not accepting bool value.
127+
* Fixed: #4045: Old `search` extension throwing `class not found` error.
128+
* Fixed: `accordion` extension throwing `Type of Redux_Extension_Accordion::$version must be string` error.
129+
* Fixed: `color_scheme` typed property must not be accessed before initialization.
130+
125131
= 4.5.3 =
126132
* Removed: Deprecation notice for $filesystem. Too many people think it's an error. We'll have to support old Redux 3 code for the foreseeable future.
127133
* Release date: December 5, 2024

redux-core/framework.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
require_once __DIR__ . '/class-redux-core.php';
3434

35-
Redux_Core::$version = '4.5.3.3';
35+
Redux_Core::$version = '4.5.4';
3636
Redux_Core::$redux_path = __DIR__;
3737
Redux_Core::instance();
3838

redux-framework.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Plugin URI: https://wordpress.org/plugins/redux-framework
99
* GitHub URI: reduxframework/redux-framework
1010
* Description: Build better sites in WordPress fast!
11-
* Version: 4.5.3.3
11+
* Version: 4.5.4
1212
* Requires at least: 5.0
1313
* Requires PHP: 7.4
1414
* Author: Team Redux

0 commit comments

Comments
 (0)