Version Description
- Fix: Quick fix for cloning bug
Download this release
Release Info
Developer | rilwis |
Plugin | Meta Box |
Version | 4.9.4 |
Comparing to | |
See all releases |
Code changes from version 4.9.3 to 4.9.4
- inc/field.php +2 -2
- inc/loader.php +1 -1
- meta-box.php +1 -1
- readme.txt +4 -1
inc/field.php
CHANGED
@@ -303,8 +303,8 @@ abstract class RWMB_Field
|
|
303 |
'attributes' => array(),
|
304 |
) );
|
305 |
|
306 |
-
$classes
|
307 |
-
$field['class'] = implode( ' ', $classes );
|
308 |
|
309 |
return $field;
|
310 |
}
|
303 |
'attributes' => array(),
|
304 |
) );
|
305 |
|
306 |
+
$classes = array_merge( array( "rwmb-{$field['type']}" ), (array) $field['class'] );
|
307 |
+
$field['class'] = trim( implode( ' ', $classes ) );
|
308 |
|
309 |
return $field;
|
310 |
}
|
inc/loader.php
CHANGED
@@ -18,7 +18,7 @@ class RWMB_Loader
|
|
18 |
protected function constants()
|
19 |
{
|
20 |
// Script version, used to add version for scripts and styles
|
21 |
-
define( 'RWMB_VER', '4.9.
|
22 |
|
23 |
list( $path, $url ) = self::get_path( dirname( dirname( __FILE__ ) ) );
|
24 |
|
18 |
protected function constants()
|
19 |
{
|
20 |
// Script version, used to add version for scripts and styles
|
21 |
+
define( 'RWMB_VER', '4.9.4' );
|
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 for any post type in WordPress.
|
6 |
-
* Version: 4.9.
|
7 |
* Author: Rilwis
|
8 |
* Author URI: http://www.deluxeblogtips.com
|
9 |
* License: GPL2+
|
3 |
* Plugin Name: Meta Box
|
4 |
* Plugin URI: https://metabox.io
|
5 |
* Description: Create custom meta boxes and custom fields for any post type in WordPress.
|
6 |
+
* Version: 4.9.4
|
7 |
* Author: Rilwis
|
8 |
* Author URI: http://www.deluxeblogtips.com
|
9 |
* License: GPL2+
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://paypal.me/anhtnt
|
|
4 |
Tags: meta-box, custom fields, custom field, meta, meta-boxes, admin, advanced, custom, edit, field, file, image, magic fields, matrix, more fields, Post, repeater, simple fields, text, textarea, type, cms, fields post
|
5 |
Requires at least: 4.1
|
6 |
Tested up to: 4.6.1
|
7 |
-
Stable tag: 4.9.
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Meta Box plugin is a powerful, professional solution to create custom meta boxes and custom fields for WordPress websites.
|
@@ -80,6 +80,9 @@ To getting started with the plugin API, please read [this tutorial](https://meta
|
|
80 |
|
81 |
== Changelog ==
|
82 |
|
|
|
|
|
|
|
83 |
= 4.9.3 =
|
84 |
* Fix: Quick fix saving datetime field
|
85 |
|
4 |
Tags: meta-box, custom fields, custom field, meta, meta-boxes, admin, advanced, custom, edit, field, file, image, magic fields, matrix, more fields, Post, repeater, simple fields, text, textarea, type, cms, fields post
|
5 |
Requires at least: 4.1
|
6 |
Tested up to: 4.6.1
|
7 |
+
Stable tag: 4.9.4
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Meta Box plugin is a powerful, professional solution to create custom meta boxes and custom fields for WordPress websites.
|
80 |
|
81 |
== Changelog ==
|
82 |
|
83 |
+
= 4.9.4 =
|
84 |
+
* Fix: Quick fix for cloning bug
|
85 |
+
|
86 |
= 4.9.3 =
|
87 |
* Fix: Quick fix saving datetime field
|
88 |
|