The Events Calendar - Version 1.5.6

Version Description

  • Fixes date bug in the class method setOptions(), line 1188 in the-events-calendar.php ** thanks to hmarcbower for some ground work on this
Download this release

Release Info

Developer justinendler
Plugin Icon The Events Calendar
Version 1.5.6
Comparing to
See all releases

Code changes from version 1.5.5 to 1.5.6

Files changed (2) hide show
  1. readme.txt +6 -1
  2. the-events-calendar.php +2 -2
readme.txt CHANGED
@@ -5,7 +5,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
5
  Tags: widget, events, simple, tooltips, grid, month, list, calendar, event, venue, eventbrite, registration, tickets, ticketing, eventbright, api, dates, date, plugin, posts, sidebar, template, theme, time, google maps, conference, workshop, concert, meeting, seminar, summit, forum, shortcode
6
  Requires at least: 2.8
7
  Tested up to: 2.9.2
8
- Stable tag: 1.5.5
9
 
10
  == Description ==
11
 
@@ -209,6 +209,11 @@ Please visit the forum for questions or comments: http://wordpress.org/tags/the-
209
 
210
  == Changelog ==
211
 
 
 
 
 
 
212
  = 1.5.5 =
213
 
214
  Features
5
  Tags: widget, events, simple, tooltips, grid, month, list, calendar, event, venue, eventbrite, registration, tickets, ticketing, eventbright, api, dates, date, plugin, posts, sidebar, template, theme, time, google maps, conference, workshop, concert, meeting, seminar, summit, forum, shortcode
6
  Requires at least: 2.8
7
  Tested up to: 2.9.2
8
+ Stable tag: 1.5.6
9
 
10
  == Description ==
11
 
209
 
210
  == Changelog ==
211
 
212
+ = 1.5.6 =
213
+
214
+ * Fixes date bug in the class method setOptions(), line 1188 in the-events-calendar.php
215
+ ** thanks to hmarcbower for some ground work on this
216
+
217
  = 1.5.5 =
218
 
219
  Features
the-events-calendar.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: The Events Calendar
4
  Plugin URI: http://wordpress.org/extend/plugins/the-events-calendar/
5
  Description: The Events Calendar plugin enables you to rapidly create and manage events using the post editor. Features include optional Eventbrite integration, Google Maps integration as well as default calendar grid and list templates for streamlined one click installation.
6
- Version: 1.5.5
7
  Author: Shane & Peter, Inc.
8
  Author URI: http://www.shaneandpeter.com/
9
  Text Domain: the-events-calendar
@@ -1185,7 +1185,7 @@ if ( !class_exists( 'The_Events_Calendar' ) ) {
1185
  $this->date = $wp_query->query_vars['eventDate'] . "-01";
1186
  } else {
1187
  $date = date_i18n( The_Events_Calendar::DBDATEFORMAT );
1188
- $this->date = str_replace( substr( $date, 8 ), '01', $date );
1189
  }
1190
  break;
1191
  }
3
  Plugin Name: The Events Calendar
4
  Plugin URI: http://wordpress.org/extend/plugins/the-events-calendar/
5
  Description: The Events Calendar plugin enables you to rapidly create and manage events using the post editor. Features include optional Eventbrite integration, Google Maps integration as well as default calendar grid and list templates for streamlined one click installation.
6
+ Version: 1.5.6
7
  Author: Shane & Peter, Inc.
8
  Author URI: http://www.shaneandpeter.com/
9
  Text Domain: the-events-calendar
1185
  $this->date = $wp_query->query_vars['eventDate'] . "-01";
1186
  } else {
1187
  $date = date_i18n( The_Events_Calendar::DBDATEFORMAT );
1188
+ $this->date = substr_replace( $date, '01', -2 );
1189
  }
1190
  break;
1191
  }