Skip to content

Commit 455c198

Browse files
committed
Taxonomy WordPress data not handled properly in fields that support WordPress data. Ver bump.
Signed-off-by: Kevin Provance <kevin.provance@gmail.com>
1 parent 7bb0cef commit 455c198

File tree

6 files changed

+12
-6
lines changed

6 files changed

+12
-6
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Redux Changelog
22

3+
## 4.2.4
4+
* Fixed: Taxonomy WordPress data not handled properly in fields that support WordPress data.
5+
36
## 4.2.3
47
* Fixed: Return type error in Redux templates.
58

package.json

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

readme.txt

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: gutenberg, blocks, gutenberg blocks, editor, block, page builder, block ed
44
Requires at least: 4.0
55
Requires PHP: 7.1
66
Tested up to: 5.8
7-
Stable tag: 4.2.3
7+
Stable tag: 4.2.4
88
License: GPL-3.0+
99
License URI: http://www.gnu.org/licenses/gpl-3.0.txt
1010

@@ -152,6 +152,9 @@ If you want, you can use the [Gutenberg](https://wordpress.org/plugins/gutenberg
152152

153153
== Changelog ==
154154

155+
- 4.2.4 =
156+
Fixed: Taxonomy WordPress data not handled properly in fields that support WordPress data.
157+
155158
= 4.2.3 =
156159
Fixed: Return type error in Redux templates.
157160

redux-core/framework.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
require_once dirname( __FILE__ ) . '/class-redux-core.php';
2525

26-
Redux_Core::$version = '4.2.3';
26+
Redux_Core::$version = '4.2.4';
2727
Redux_Core::$redux_path = dirname( __FILE__ );
2828
Redux_Core::instance();
2929

redux-core/inc/classes/class-redux-wordpress-data.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -530,9 +530,9 @@ private function maybe_get_translation( string $type, &$current_value = '', $arg
530530
* Maybe translate the values.
531531
*
532532
* @param mixed|array $value Value.
533-
* @param string $post_type Post type.
533+
* @param mixed|array $post_type Post type.
534534
*/
535-
private function maybe_translate( &$value, string $post_type ) {
535+
private function maybe_translate( &$value, $post_type ) {
536536

537537
// phpcs:ignore WordPress.NamingConventions.ValidHookName
538538
$value = apply_filters( "redux/options/$this->opt_name/wordpress_data/translate/post_type_value", $value, $post_type );

redux-framework.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Description: Build better sites in WordPress fast
1111
* Author: Redux.io
1212
* Author URI: http://redux.io
13-
* Version: 4.2.3
13+
* Version: 4.2.4
1414
* Text Domain: redux-framework
1515
* License: GPLv3 or later
1616
* License URI: http://www.gnu.org/licenses/gpl-3.0.txt

0 commit comments

Comments
 (0)