Date and Time Picker Field - Version 2.0.16

Version Description

  • Fix Undefined property: acf_field_date_time_picker::$domain
Download this release

Release Info

Developer PerS
Plugin Icon 128x128 Date and Time Picker Field
Version 2.0.16
Comparing to
See all releases

Code changes from version 2.0.15.2 to 2.0.16

acf-date_time_picker.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Advanced Custom Fields: Date and Time Picker
4
  Plugin URI: https://github.com/soderlind/acf-field-date-time-picker
5
  Description: Date and Time Picker field for Advanced Custom Fields
6
- Version: 2.0.15.2
7
  Author: Per Soderlind
8
  Author URI: http://soderlind.no
9
  License: GPLv2 or later
3
  Plugin Name: Advanced Custom Fields: Date and Time Picker
4
  Plugin URI: https://github.com/soderlind/acf-field-date-time-picker
5
  Description: Date and Time Picker field for Advanced Custom Fields
6
+ Version: 2.0.16
7
  Author: Per Soderlind
8
  Author URI: http://soderlind.no
9
  License: GPLv2 or later
date_time_picker-v5.php CHANGED
@@ -17,8 +17,8 @@ class acf_field_date_time_picker extends acf_field
17
  // vars
18
  $this->name = 'date_time_picker';
19
  $this->label = __('Date and Time Picker');
20
- $this->category = __("jQuery", $this->domain); // Basic, Content, Choice, etc
21
  $this->domain = 'acf-field-date-time-picker';
 
22
  $this->defaults = array(
23
  'label' => __( 'Choose Time', $this->domain )
24
  , 'time_format' => 'h:mm tt'
17
  // vars
18
  $this->name = 'date_time_picker';
19
  $this->label = __('Date and Time Picker');
 
20
  $this->domain = 'acf-field-date-time-picker';
21
+ $this->category = __("jQuery", $this->domain); // Basic, Content, Choice, etc
22
  $this->defaults = array(
23
  'label' => __( 'Choose Time', $this->domain )
24
  , 'time_format' => 'h:mm tt'
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://soderlind.no/donate/
4
  Tags: acf, custom field,datepicker,timepicker
5
  Requires at least: 3.6
6
  Tested up to: 3.9
7
- Stable tag: 2.0.15.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -112,6 +112,8 @@ TT AM or PM for AM/PM
112
  The Date and Time Picker field is saved as an UNIX timestamp. Use the PHP [date](http://php.net/manual/en/function.date.php) function when you use it in your theme.
113
 
114
  == Changelog ==
 
 
115
  = 2.0.15 =
116
  * Thanks to [yanknudtskov](https://github.com/yanknudtskov), the plugin now works with ACF 5.0
117
  = 2.0.14 =
4
  Tags: acf, custom field,datepicker,timepicker
5
  Requires at least: 3.6
6
  Tested up to: 3.9
7
+ Stable tag: 2.0.16
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
112
  The Date and Time Picker field is saved as an UNIX timestamp. Use the PHP [date](http://php.net/manual/en/function.date.php) function when you use it in your theme.
113
 
114
  == Changelog ==
115
+ = 2.0.16 =
116
+ * Fix Undefined property: acf_field_date_time_picker::$domain
117
  = 2.0.15 =
118
  * Thanks to [yanknudtskov](https://github.com/yanknudtskov), the plugin now works with ACF 5.0
119
  = 2.0.14 =