Version Description
Fixed: #3822 - Default value function returns string or array to prevent type error.
Modified: #3820 - Better support for Redux embedded in themes.
Modified: install_plugins
security level now required to install Template blocks that require additional plugins. This was done for security reasons.
Added: New global arg load_on_cron
. Set to true if you require Redux to run within a cron initiated function.
Removed: URL based Import/Export option due to security concerns. Manual Import/Export features remain.
Removed: Support URL feature due to security issues. Please use WordPress Site Health 'copy to clipboard' compiler to submit system data when reporting issues.
Download this release
Release Info
Developer | dovyp |
Plugin | Redux Framework |
Version | 4.2.13 |
Comparing to | |
See all releases |
Code changes from version 4.2.12 to 4.2.13
- readme.txt +2 -2
- redux-core/framework.php +1 -1
- redux-framework.php +1 -1
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: gutenberg, blocks, gutenberg blocks, editor, block, page builder, block ed
|
|
4 |
Requires at least: 4.0
|
5 |
Requires PHP: 7.1
|
6 |
Tested up to: 5.8
|
7 |
-
Stable tag: 4.2.
|
8 |
License: GPL-3.0+
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.txt
|
10 |
|
@@ -152,7 +152,7 @@ If you want, you can use the [Gutenberg](https://wordpress.org/plugins/gutenberg
|
|
152 |
|
153 |
== Changelog ==
|
154 |
|
155 |
-
= 4.2.
|
156 |
Fixed: #3822 - Default value function returns string or array to prevent type error.
|
157 |
Modified: #3820 - Better support for Redux embedded in themes.
|
158 |
Modified: `install_plugins` security level now required to install Template blocks that require additional plugins. This was done for security reasons.
|
4 |
Requires at least: 4.0
|
5 |
Requires PHP: 7.1
|
6 |
Tested up to: 5.8
|
7 |
+
Stable tag: 4.2.13
|
8 |
License: GPL-3.0+
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.txt
|
10 |
|
152 |
|
153 |
== Changelog ==
|
154 |
|
155 |
+
= 4.2.13 =
|
156 |
Fixed: #3822 - Default value function returns string or array to prevent type error.
|
157 |
Modified: #3820 - Better support for Redux embedded in themes.
|
158 |
Modified: `install_plugins` security level now required to install Template blocks that require additional plugins. This was done for security reasons.
|
redux-core/framework.php
CHANGED
@@ -29,7 +29,7 @@ defined( 'ABSPATH' ) || exit;
|
|
29 |
|
30 |
require_once dirname( __FILE__ ) . '/class-redux-core.php';
|
31 |
|
32 |
-
Redux_Core::$version = '4.2.
|
33 |
Redux_Core::$redux_path = dirname( __FILE__ );
|
34 |
Redux_Core::instance();
|
35 |
|
29 |
|
30 |
require_once dirname( __FILE__ ) . '/class-redux-core.php';
|
31 |
|
32 |
+
Redux_Core::$version = '4.2.13';
|
33 |
Redux_Core::$redux_path = dirname( __FILE__ );
|
34 |
Redux_Core::instance();
|
35 |
|
redux-framework.php
CHANGED
@@ -10,7 +10,7 @@
|
|
10 |
* Description: Build better sites in WordPress fast
|
11 |
* Author: Redux.io
|
12 |
* Author URI: http://redux.io
|
13 |
-
* Version: 4.2.
|
14 |
* Text Domain: redux-framework
|
15 |
* License: GPLv3 or later
|
16 |
* License URI: http://www.gnu.org/licenses/gpl-3.0.txt
|
10 |
* Description: Build better sites in WordPress fast
|
11 |
* Author: Redux.io
|
12 |
* Author URI: http://redux.io
|
13 |
+
* Version: 4.2.13
|
14 |
* Text Domain: redux-framework
|
15 |
* License: GPLv3 or later
|
16 |
* License URI: http://www.gnu.org/licenses/gpl-3.0.txt
|