Meta Box - Version 5.4.3

Version Description

  • 2021-06-30 =
  • Fix trailing comma in function call for PHP < 7.3
Download this release

Release Info

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

Code changes from version 5.4.2 to 5.4.3

Files changed (4) hide show
  1. inc/fields/image.php +1 -1
  2. inc/loader.php +1 -1
  3. meta-box.php +1 -1
  4. readme.txt +4 -1
inc/fields/image.php CHANGED
@@ -50,7 +50,7 @@ class RWMB_Image_Field extends RWMB_File_Field {
50
  $file,
51
  $attributes['name'],
52
  $index,
53
- $file,
54
  );
55
  }
56
 
50
  $file,
51
  $attributes['name'],
52
  $index,
53
+ $file
54
  );
55
  }
56
 
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.4.2' );
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.4.3' );
22
 
23
  list( $path, $url ) = self::get_path( dirname( dirname( __FILE__ ) ) );
24
 
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.4.2
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.4.3
7
  * Author: MetaBox.io
8
  * Author URI: https://metabox.io
9
  * License: GPL2+
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: meta box, custom fields, custom post types, custom taxonomies, cpt, meta b
5
  Requires at least: 4.3
6
  Requires PHP: 5.6
7
  Tested up to: 5.7.2
8
- Stable tag: 5.4.2
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.4.2 - 2021-06-29 =
172
  - Improve style for media fields to reuse style/HTML markup.
173
  - Make input, select, input group, select2, textarea full width on the side context.
5
  Requires at least: 4.3
6
  Requires PHP: 5.6
7
  Tested up to: 5.7.2
8
+ Stable tag: 5.4.3
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.4.3 - 2021-06-30 =
172
+ - Fix trailing comma in function call for PHP < 7.3
173
+
174
  = 5.4.2 - 2021-06-29 =
175
  - Improve style for media fields to reuse style/HTML markup.
176
  - Make input, select, input group, select2, textarea full width on the side context.