Version Description
Fixed: Parse error in Import/Export module due to old versions of PHP.
Download this release
Release Info
Developer | dovyp |
Plugin | Redux Framework |
Version | 4.2.14 |
Comparing to | |
See all releases |
Code changes from version 4.2.13 to 4.2.14
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: dovyp, redux, kprovance
|
|
3 |
Tags: gutenberg, blocks, gutenberg blocks, editor, block, page builder, block editor, block library, editor, templates, library
|
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,6 +152,9 @@ If you want, you can use the [Gutenberg](https://wordpress.org/plugins/gutenberg
|
|
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.
|
3 |
Tags: gutenberg, blocks, gutenberg blocks, editor, block, page builder, block editor, block library, editor, templates, library
|
4 |
Requires at least: 4.0
|
5 |
Requires PHP: 7.1
|
6 |
+
Tested up to: 5.8.1
|
7 |
+
Stable tag: 4.2.14
|
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.14 =
|
156 |
+
Fixed: Parse error in Import/Export module due to old versions of PHP.
|
157 |
+
|
158 |
= 4.2.13 =
|
159 |
Fixed: #3822 - Default value function returns string or array to prevent type error.
|
160 |
Modified: #3820 - Better support for Redux embedded in themes.
|
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.14';
|
33 |
Redux_Core::$redux_path = dirname( __FILE__ );
|
34 |
Redux_Core::instance();
|
35 |
|
redux-core/inc/extensions/import_export/import_export/class-redux-import-export.php
CHANGED
@@ -60,7 +60,7 @@ if ( ! class_exists( 'Redux_Import_Export', false ) ) {
|
|
60 |
* @access public
|
61 |
*/
|
62 |
public function render() {
|
63 |
-
$secret = wp_create_nonce( 'redux_io_' . $this->parent->args['opt_name']
|
64 |
|
65 |
// No errors please.
|
66 |
$defaults = array(
|
60 |
* @access public
|
61 |
*/
|
62 |
public function render() {
|
63 |
+
$secret = wp_create_nonce( 'redux_io_' . $this->parent->args['opt_name'] );
|
64 |
|
65 |
// No errors please.
|
66 |
$defaults = array(
|
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.14
|
14 |
* Text Domain: redux-framework
|
15 |
* License: GPLv3 or later
|
16 |
* License URI: http://www.gnu.org/licenses/gpl-3.0.txt
|