Skip to content

Commit

Permalink
v4.5.4 release
Browse files Browse the repository at this point in the history
Signed-off-by: Kev Provance <[email protected]>
  • Loading branch information
kprovance committed Dec 16, 2024
1 parent fdf0600 commit 9f8e461
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion class-redux-framework-plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ private static function get_blog_ids() {
if ( false === $result ) {

// WordPress says get_col is discouraged? I found no alternative. So...ignore! - kp.
// phpcs:ignore WordPress.DB.DirectDatabaseQuery

$result = $wpdb->get_col( $wpdb->prepare( "SELECT blog_id FROM $wpdb->blogs WHERE archived = %s AND spam = %s AND deleted = %s", $var, $var, $var ) );

wp_cache_set( 'redux-blog-ids', $result );
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"main": "gulpfile.js",
"name": "redux-framework",
"author": "Team Redux",
"version": "4.5.3",
"version": "4.5.4",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
Expand Down
8 changes: 7 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: admin, options, theme options, plugin options, options framework
Requires at least: 5.0
Requires PHP: 7.4
Tested up to: 6.7
Stable tag: 4.5.3
Stable tag: 4.5.4
License: GPL-3.0+
License URI: http://www.gnu.org/licenses/gpl-3.0.txt

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

== Changelog ==

= 4.5.4 =
* Fixed: Filesystem class $creds not accepting bool value.
* Fixed: #4045: Old `search` extension throwing `class not found` error.
* Fixed: `accordion` extension throwing `Type of Redux_Extension_Accordion::$version must be string` error.
* Fixed: `color_scheme` typed property must not be accessed before initialization.

= 4.5.3 =
* 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.
* Release date: December 5, 2024
Expand Down
2 changes: 1 addition & 1 deletion redux-core/framework.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

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

Redux_Core::$version = '4.5.3.3';
Redux_Core::$version = '4.5.4';
Redux_Core::$redux_path = __DIR__;
Redux_Core::instance();

Expand Down
2 changes: 1 addition & 1 deletion redux-framework.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* Plugin URI: https://wordpress.org/plugins/redux-framework
* GitHub URI: reduxframework/redux-framework
* Description: Build better sites in WordPress fast!
* Version: 4.5.3.3
* Version: 4.5.4
* Requires at least: 5.0
* Requires PHP: 7.4
* Author: Team Redux
Expand Down

0 comments on commit 9f8e461

Please sign in to comment.