Meta Box - Version 4.2.3

Version Description

  • Bug fix: clone date field. Link
Download this release

Release Info

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

Code changes from version 4.2.2 to 4.2.3

Files changed (5) hide show
  1. js/date.js +2 -2
  2. js/datetime.js +2 -2
  3. js/time.js +2 -2
  4. meta-box.php +2 -2
  5. readme.txt +5 -2
js/date.js CHANGED
@@ -12,11 +12,11 @@ function rwmb_update_date_picker()
12
  options = $this.data( 'options' );
13
 
14
  $this.siblings( '.ui-datepicker-append' ).remove(); // Remove appended text
15
- $this.removeClass( 'hasDatepicker' ).datepicker( options );
16
  } );
17
  }
18
 
19
  jQuery( document ).ready( function()
20
  {
21
  rwmb_update_date_picker();
22
- } );
12
  options = $this.data( 'options' );
13
 
14
  $this.siblings( '.ui-datepicker-append' ).remove(); // Remove appended text
15
+ $this.removeClass( 'hasDatepicker' ).attr( 'id', '' ).datepicker( options );
16
  } );
17
  }
18
 
19
  jQuery( document ).ready( function()
20
  {
21
  rwmb_update_date_picker();
22
+ } );
js/datetime.js CHANGED
@@ -12,11 +12,11 @@ function rwmb_update_datetime_picker()
12
  options = $this.data( 'options' );
13
 
14
  $this.siblings( '.ui-datepicker-append' ).remove(); // Remove appended text
15
- $this.removeClass( 'hasDatepicker' ).datetimepicker( options );
16
  } );
17
  }
18
 
19
  jQuery( document ).ready( function()
20
  {
21
  rwmb_update_datetime_picker();
22
- } );
12
  options = $this.data( 'options' );
13
 
14
  $this.siblings( '.ui-datepicker-append' ).remove(); // Remove appended text
15
+ $this.removeClass( 'hasDatepicker' ).attr( 'id', '' ).datetimepicker( options );
16
  } );
17
  }
18
 
19
  jQuery( document ).ready( function()
20
  {
21
  rwmb_update_datetime_picker();
22
+ } );
js/time.js CHANGED
@@ -12,11 +12,11 @@ function rwmb_update_time_picker()
12
  options = $this.data( 'options' );
13
 
14
  $this.siblings( '.ui-datepicker-append' ).remove(); // Remove appended text
15
- $this.removeClass( 'hasDatepicker' ).timepicker( options );
16
  } );
17
  }
18
 
19
  jQuery( document ).ready( function()
20
  {
21
  rwmb_update_time_picker();
22
- } );
12
  options = $this.data( 'options' );
13
 
14
  $this.siblings( '.ui-datepicker-append' ).remove(); // Remove appended text
15
+ $this.removeClass( 'hasDatepicker' ).attr( 'id', '' ).timepicker( options );
16
  } );
17
  }
18
 
19
  jQuery( document ).ready( function()
20
  {
21
  rwmb_update_time_picker();
22
+ } );
meta-box.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Meta Box
4
  Plugin URI: http://www.deluxeblogtips.com/meta-box
5
  Description: Create meta box for editing pages in WordPress. Compatible with custom post types since WP 3.0
6
- Version: 4.2.2
7
  Author: Rilwis
8
  Author URI: http://www.deluxeblogtips.com
9
  License: GPL2+
@@ -46,4 +46,4 @@ if ( is_admin() )
46
 
47
  // Main file
48
  require_once RWMB_CLASSES_DIR . 'meta-box.php';
49
- }
3
  Plugin Name: Meta Box
4
  Plugin URI: http://www.deluxeblogtips.com/meta-box
5
  Description: Create meta box for editing pages in WordPress. Compatible with custom post types since WP 3.0
6
+ Version: 4.2.3
7
  Author: Rilwis
8
  Author URI: http://www.deluxeblogtips.com
9
  License: GPL2+
46
 
47
  // Main file
48
  require_once RWMB_CLASSES_DIR . 'meta-box.php';
49
+ }
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.deluxeblogtips.com/donate
4
  Tags: meta-box, custom-fields, custom-field, meta, meta-boxes
5
  Requires at least: 3.0
6
  Tested up to: 3.4.2
7
- Stable tag: 4.2.2
8
 
9
  Meta Box plugin helps you easily implement multiple meta boxes in editing pages in WordPress. Works with custom post types and various field types.
10
 
@@ -61,6 +61,9 @@ To getting started with the plugin API, please read [this tutorial](http://www.d
61
 
62
  == Changelog ==
63
 
 
 
 
64
  = 4.2.2 =
65
  * Bug fix: `time` field doesn't work. [Link](http://wordpress.org/support/topic/time-field-js-wont-run-without-datetime)
66
  * Bug fix: wrong JS call for `datetime`. [Link](http://wordpress.org/support/topic/421-datetime)
@@ -236,4 +239,4 @@ To getting started with the plugin API, please read [this tutorial](http://www.d
236
  = 1.0 =
237
  * procedural code
238
 
239
- == Upgrade Notice ==
4
  Tags: meta-box, custom-fields, custom-field, meta, meta-boxes
5
  Requires at least: 3.0
6
  Tested up to: 3.4.2
7
+ Stable tag: 4.2.3
8
 
9
  Meta Box plugin helps you easily implement multiple meta boxes in editing pages in WordPress. Works with custom post types and various field types.
10
 
61
 
62
  == Changelog ==
63
 
64
+ = 4.2.3 =
65
+ * Bug fix: clone date field. [Link](http://www.deluxeblogtips.com/forums/viewtopic.php?id=299)
66
+
67
  = 4.2.2 =
68
  * Bug fix: `time` field doesn't work. [Link](http://wordpress.org/support/topic/time-field-js-wont-run-without-datetime)
69
  * Bug fix: wrong JS call for `datetime`. [Link](http://wordpress.org/support/topic/421-datetime)
239
  = 1.0 =
240
  * procedural code
241
 
242
+ == Upgrade Notice ==