Meta Box - Version 5.6.5

Version Description

  • 2022-07-14 =
  • Fix select advanced don't escape HTML characters
Download this release

Release Info

Developer rilwis
Plugin Icon 128x128 Meta Box
Version 5.6.5
Comparing to
See all releases

Code changes from version 5.6.4 to 5.6.5

Files changed (4) hide show
  1. inc/loader.php +1 -1
  2. js/select-advanced.js +1 -1
  3. meta-box.php +1 -1
  4. readme.txt +5 -2
inc/loader.php CHANGED
@@ -18,7 +18,7 @@ class RWMB_Loader {
18
  */
19
  protected function constants() {
20
  // Script version, used to add version for scripts and styles.
21
- define( 'RWMB_VER', '5.6.4' );
22
 
23
  list( $path, $url ) = self::get_path( dirname( dirname( __FILE__ ) ) );
24
 
18
  */
19
  protected function constants() {
20
  // Script version, used to add version for scripts and styles.
21
+ define( 'RWMB_VER', '5.6.5' );
22
 
23
  list( $path, $url ) = self::get_path( dirname( dirname( __FILE__ ) ) );
24
 
js/select-advanced.js CHANGED
@@ -41,7 +41,7 @@
41
  var items = response.data.items.map( function( item ) {
42
  return {
43
  id: item.value,
44
- text: item.label,
45
  }
46
  } );
47
 
41
  var items = response.data.items.map( function( item ) {
42
  return {
43
  id: item.value,
44
+ text: _.unescape( item.label ),
45
  }
46
  } );
47
 
meta-box.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Meta Box
4
  * Plugin URI: https://metabox.io
5
  * Description: Create custom meta boxes and custom fields in WordPress.
6
- * Version: 5.6.4
7
  * Author: MetaBox.io
8
  * Author URI: https://metabox.io
9
  * License: GPL2+
3
  * Plugin Name: Meta Box
4
  * Plugin URI: https://metabox.io
5
  * Description: Create custom meta boxes and custom fields in WordPress.
6
+ * Version: 5.6.5
7
  * Author: MetaBox.io
8
  * Author URI: https://metabox.io
9
  * License: GPL2+
readme.txt CHANGED
@@ -4,8 +4,8 @@ Donate link: https://metabox.io/pricing/
4
  Tags: meta box, custom fields, custom post types, custom taxonomies, cpt, meta boxes, custom field, post type, taxonomy, meta, admin, advanced, custom, edit, field, file, image, magic fields, post types, more fields, post, repeater, simple fields, text, textarea, type, cms, fields post
5
  Requires at least: 4.3
6
  Requires PHP: 5.6
7
- Tested up to: 5.9.3
8
- Stable tag: 5.6.4
9
  License: GPLv2 or later
10
 
11
  Meta Box plugin is a powerful, professional developer toolkit to create custom meta boxes and custom fields for your custom post types in WordPress.
@@ -168,6 +168,9 @@ To getting started with the plugin, please read the [Quick Start Guide](https://
168
 
169
  == Changelog ==
170
 
 
 
 
171
  = 5.6.4 - 2022-05-05 =
172
  - Fix when field taxonomy return WP_Error
173
  - Fix field image_upload not working with tab
4
  Tags: meta box, custom fields, custom post types, custom taxonomies, cpt, meta boxes, custom field, post type, taxonomy, meta, admin, advanced, custom, edit, field, file, image, magic fields, post types, more fields, post, repeater, simple fields, text, textarea, type, cms, fields post
5
  Requires at least: 4.3
6
  Requires PHP: 5.6
7
+ Tested up to: 6.0.1
8
+ Stable tag: 5.6.5
9
  License: GPLv2 or later
10
 
11
  Meta Box plugin is a powerful, professional developer toolkit to create custom meta boxes and custom fields for your custom post types in WordPress.
168
 
169
  == Changelog ==
170
 
171
+ = 5.6.5 - 2022-07-14 =
172
+ - Fix select advanced don't escape HTML characters
173
+
174
  = 5.6.4 - 2022-05-05 =
175
  - Fix when field taxonomy return WP_Error
176
  - Fix field image_upload not working with tab