Version Description
- 2021-06-30 =
- Fix trailing comma in function call for PHP < 7.3
Download this release
Release Info
Developer | rilwis |
Plugin | Meta Box |
Version | 5.4.3 |
Comparing to | |
See all releases |
Code changes from version 5.4.2 to 5.4.3
- inc/fields/image.php +1 -1
- inc/loader.php +1 -1
- meta-box.php +1 -1
- 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.
|
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.
|
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.
|
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.
|