Timeline Express - Version 1.1.5.3

Version Description

  • January 16th, 2015 = Fixed: Fixed incorrect date save format
Download this release

Release Info

Developer eherman24
Plugin Icon 128x128 Timeline Express
Version 1.1.5.3
Comparing to
See all releases

Code changes from version 1.1.5.2 to 1.1.5.3

classes/class.timeline-express.php CHANGED
@@ -168,7 +168,7 @@ if(!class_exists("timelineExpressBase"))
168
  </style>
169
  <?php
170
  if( $meta && isset( $meta ) ){
171
- echo '<input class="cmb_text_small cmb_datepicker" type="text" name="', $field['id'], '" id="', $field['id'], '" value="', '' !== $meta ? date( 'm/d/Y' , strtotime( $meta ) ) : $field['default'], '" />';
172
  echo '<p class="cmb_metabox_description">'.$field['desc'].'</p>';
173
  } else{
174
  echo '<input class="cmb_text_small cmb_datepicker" type="text" name="', $field['id'], '" id="', $field['id'], '" value="' . date('m/d/Y' ) .'" />';
@@ -473,7 +473,7 @@ if(!class_exists("timelineExpressBase"))
473
  'desc' => __( 'enter the date of the announcement. the announcements will appear in chronological order according to this date. ', 'timeline-express' ),
474
  'id' => $prefix . 'date',
475
  'type' => 'te_date_time_stamp_custom',
476
- 'default' => date( 'm/d/Y' ),
477
  // 'repeatable' => true,
478
  // 'on_front' => false, // Optionally designate a field to wp-admin only
479
  ),
168
  </style>
169
  <?php
170
  if( $meta && isset( $meta ) ){
171
+ echo '<input class="cmb_text_small cmb_datepicker" type="text" name="', $field['id'], '" id="', $field['id'], '" value="', '' !== $meta ? date( 'm/d/Y' , $meta ) : $field['default'], '" />';
172
  echo '<p class="cmb_metabox_description">'.$field['desc'].'</p>';
173
  } else{
174
  echo '<input class="cmb_text_small cmb_datepicker" type="text" name="', $field['id'], '" id="', $field['id'], '" value="' . date('m/d/Y' ) .'" />';
473
  'desc' => __( 'enter the date of the announcement. the announcements will appear in chronological order according to this date. ', 'timeline-express' ),
474
  'id' => $prefix . 'date',
475
  'type' => 'te_date_time_stamp_custom',
476
+ 'default' => strtotime( date( 'm/d/Y' ) ),
477
  // 'repeatable' => true,
478
  // 'on_front' => false, // Optionally designate a field to wp-admin only
479
  ),
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.evan-herman.com/contact/?contact-reason=I%20want%20to%20
4
  Tags: vertical, timeline, animated, css3, animations, evan, herman, evan herman, easy, time, line, font awesome, font, awesome, announcements, notifications, simple, events, calendar, scroll, triggered, scrolling, animated, fade, in, fade in
5
  Requires at least: 3.9
6
  Tested up to: 4.1
7
- Stable tag: 1.1.5.2
8
  License: GPLv2 or later
9
 
10
  Timeline express allows you to create a beautiful vertical animated and responsive timeline of posts , without writing a single line of code. Sweet!
@@ -283,6 +283,9 @@ Have an idea for a future release feature? I love hearing about new ideas! You c
283
 
284
  == Changelog ==
285
 
 
 
 
286
  = 1.1.5.2 - January 13th, 2015 =
287
  Fixed: Errors thrown from new user fields hook, when no custom fields are defined by the user
288
  Fixed: Incorrect date format for new announcements
@@ -377,6 +380,9 @@ Fixed: Adjusted a few styles on the announcement post page
377
 
378
  == Upgrade Notice ==
379
 
 
 
 
380
  = 1.1.5.2 - January 10th, 2015 =
381
  Fixed: Errors thrown from new user fields hook, when no custom fields are defined by the user
382
  Fixed: Incorrect date format for new announcements
4
  Tags: vertical, timeline, animated, css3, animations, evan, herman, evan herman, easy, time, line, font awesome, font, awesome, announcements, notifications, simple, events, calendar, scroll, triggered, scrolling, animated, fade, in, fade in
5
  Requires at least: 3.9
6
  Tested up to: 4.1
7
+ Stable tag: 1.1.5.3
8
  License: GPLv2 or later
9
 
10
  Timeline express allows you to create a beautiful vertical animated and responsive timeline of posts , without writing a single line of code. Sweet!
283
 
284
  == Changelog ==
285
 
286
+ = 1.1.5.3 - January 16th, 2015 =
287
+ Fixed: Fixed incorrect date save format
288
+
289
  = 1.1.5.2 - January 13th, 2015 =
290
  Fixed: Errors thrown from new user fields hook, when no custom fields are defined by the user
291
  Fixed: Incorrect date format for new announcements
380
 
381
  == Upgrade Notice ==
382
 
383
+ = 1.1.5.3 - January 16th, 2015 =
384
+ Fixed: Fixed incorrect date save format
385
+
386
  = 1.1.5.2 - January 10th, 2015 =
387
  Fixed: Errors thrown from new user fields hook, when no custom fields are defined by the user
388
  Fixed: Incorrect date format for new announcements
timeline-express.php CHANGED
@@ -4,7 +4,7 @@
4
  Plugin Name: Timeline Express
5
  Plugin URI: http://www.evan-herman.com
6
  Description: Create a beautiful vertical, CSS3 animated and responsive timeline in minutes flat without writing code.
7
- Version: 1.1.5.2
8
  Author: Evan Herman
9
  Author URI: http://www.evan-herman.com
10
  License: GPL2
@@ -28,7 +28,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
28
  #_________________________________________________ CONSTANTS
29
 
30
  /** Configuration **/
31
- if(!defined('TIMELINE_EXPRESS_VERSION_CURRENT')) define('TIMELINE_EXPRESS_VERSION_CURRENT', '1.1.5.2');
32
  if(!defined('TIMELINE_EXPRESS_PATH')) define('TIMELINE_EXPRESS_PATH', plugin_dir_path( __FILE__ ));
33
  if(!defined('TIMELINE_EXPRESS_URL')) define('TIMELINE_EXPRESS_URL', plugins_url('timeline-express/'));
34
  if(!defined('TIMELINE_EXPRESS_URL_WP')) define('TIMELINE_EXPRESS_URL_WP', get_bloginfo('url'));
4
  Plugin Name: Timeline Express
5
  Plugin URI: http://www.evan-herman.com
6
  Description: Create a beautiful vertical, CSS3 animated and responsive timeline in minutes flat without writing code.
7
+ Version: 1.1.5.3
8
  Author: Evan Herman
9
  Author URI: http://www.evan-herman.com
10
  License: GPL2
28
  #_________________________________________________ CONSTANTS
29
 
30
  /** Configuration **/
31
+ if(!defined('TIMELINE_EXPRESS_VERSION_CURRENT')) define('TIMELINE_EXPRESS_VERSION_CURRENT', '1.1.5.3');
32
  if(!defined('TIMELINE_EXPRESS_PATH')) define('TIMELINE_EXPRESS_PATH', plugin_dir_path( __FILE__ ));
33
  if(!defined('TIMELINE_EXPRESS_URL')) define('TIMELINE_EXPRESS_URL', plugins_url('timeline-express/'));
34
  if(!defined('TIMELINE_EXPRESS_URL_WP')) define('TIMELINE_EXPRESS_URL_WP', get_bloginfo('url'));