Version Description
Download this release
Release Info
Developer | dovyp |
Plugin | Redux Framework |
Version | 4.2.4 |
Comparing to | |
See all releases |
Code changes from version 4.2.3 to 4.2.4
- readme.txt +4 -1
- redux-core/framework.php +1 -1
- redux-core/inc/classes/class-redux-wordpress-data.php +2 -2
- 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,6 +152,9 @@ If you want, you can use the [Gutenberg](https://wordpress.org/plugins/gutenberg
|
|
152 |
|
153 |
== Changelog ==
|
154 |
|
|
|
|
|
|
|
155 |
= 4.2.3 =
|
156 |
Fixed: Return type error in Redux templates.
|
157 |
|
4 |
Requires at least: 4.0
|
5 |
Requires PHP: 7.1
|
6 |
Tested up to: 5.8
|
7 |
+
Stable tag: 4.2.4
|
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.4 =
|
156 |
+
Fixed: Taxonomy WordPress data not handled properly in fields that support WordPress data.
|
157 |
+
|
158 |
= 4.2.3 =
|
159 |
Fixed: Return type error in Redux templates.
|
160 |
|
redux-core/framework.php
CHANGED
@@ -23,7 +23,7 @@ defined( 'ABSPATH' ) || exit;
|
|
23 |
|
24 |
require_once dirname( __FILE__ ) . '/class-redux-core.php';
|
25 |
|
26 |
-
Redux_Core::$version = '4.2.
|
27 |
Redux_Core::$redux_path = dirname( __FILE__ );
|
28 |
Redux_Core::instance();
|
29 |
|
23 |
|
24 |
require_once dirname( __FILE__ ) . '/class-redux-core.php';
|
25 |
|
26 |
+
Redux_Core::$version = '4.2.4';
|
27 |
Redux_Core::$redux_path = dirname( __FILE__ );
|
28 |
Redux_Core::instance();
|
29 |
|
redux-core/inc/classes/class-redux-wordpress-data.php
CHANGED
@@ -530,9 +530,9 @@ if ( ! class_exists( 'Redux_WordPress_Data', false ) ) {
|
|
530 |
* Maybe translate the values.
|
531 |
*
|
532 |
* @param mixed|array $value Value.
|
533 |
-
* @param
|
534 |
*/
|
535 |
-
private function maybe_translate( &$value,
|
536 |
|
537 |
// phpcs:ignore WordPress.NamingConventions.ValidHookName
|
538 |
$value = apply_filters( "redux/options/$this->opt_name/wordpress_data/translate/post_type_value", $value, $post_type );
|
530 |
* Maybe translate the values.
|
531 |
*
|
532 |
* @param mixed|array $value Value.
|
533 |
+
* @param mixed|array $post_type Post type.
|
534 |
*/
|
535 |
+
private function maybe_translate( &$value, $post_type ) {
|
536 |
|
537 |
// phpcs:ignore WordPress.NamingConventions.ValidHookName
|
538 |
$value = apply_filters( "redux/options/$this->opt_name/wordpress_data/translate/post_type_value", $value, $post_type );
|
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.4
|
14 |
* Text Domain: redux-framework
|
15 |
* License: GPLv3 or later
|
16 |
* License URI: http://www.gnu.org/licenses/gpl-3.0.txt
|