My Calendar - Version 3.3.16

Version Description

  • Bug fix: Incorrectly passed list type caused templates to encode html entities.
Download this release

Release Info

Developer joedolson
Plugin Icon 128x128 My Calendar
Version 3.3.16
Comparing to
See all releases

Code changes from version 3.3.15 to 3.3.16

Files changed (3) hide show
  1. my-calendar-widgets.php +2 -2
  2. my-calendar.php +2 -2
  3. readme.txt +5 -1
my-calendar-widgets.php CHANGED
@@ -200,7 +200,7 @@ function my_calendar_upcoming_events( $args ) {
200
  $omit[] = $event->event_group_id;
201
  }
202
  if ( '' === $item ) {
203
- $item = mc_draw_template( $details, $template, 'upcoming', $event );
204
  }
205
  if ( $i < $skip && 0 !== $skip ) {
206
  $i ++;
@@ -579,7 +579,7 @@ function my_calendar_todays_events( $args ) {
579
 
580
  $item = apply_filters( 'mc_draw_todays_event', '', $event_details, $template );
581
  if ( '' === $item ) {
582
- $item = mc_draw_template( $event_details, $template, 'today', $e );
583
  }
584
  $todays_events[ $ts ][] = $prepend . $item . $append;
585
  }
200
  $omit[] = $event->event_group_id;
201
  }
202
  if ( '' === $item ) {
203
+ $item = mc_draw_template( $details, $template, 'list', $event );
204
  }
205
  if ( $i < $skip && 0 !== $skip ) {
206
  $i ++;
579
 
580
  $item = apply_filters( 'mc_draw_todays_event', '', $event_details, $template );
581
  if ( '' === $item ) {
582
+ $item = mc_draw_template( $event_details, $template, 'list', $e );
583
  }
584
  $todays_events[ $ts ][] = $prepend . $item . $append;
585
  }
my-calendar.php CHANGED
@@ -17,7 +17,7 @@
17
  * License: GPL-2.0+
18
  * License URI: http://www.gnu.org/license/gpl-2.0.txt
19
  * Domain Path: lang
20
- * Version: 3.3.15
21
  */
22
 
23
  /*
@@ -42,7 +42,7 @@ if ( ! defined( 'ABSPATH' ) ) {
42
  }
43
 
44
  global $mc_version, $wpdb;
45
- $mc_version = '3.3.15';
46
 
47
  define( 'MC_DEBUG', false );
48
 
17
  * License: GPL-2.0+
18
  * License URI: http://www.gnu.org/license/gpl-2.0.txt
19
  * Domain Path: lang
20
+ * Version: 3.3.16
21
  */
22
 
23
  /*
42
  }
43
 
44
  global $mc_version, $wpdb;
45
+ $mc_version = '3.3.16';
46
 
47
  define( 'MC_DEBUG', false );
48
 
readme.txt CHANGED
@@ -6,7 +6,7 @@ Requires at least: 4.4
6
  Tested up to: 6.0
7
  Requires PHP: 7.0
8
  Text domain: my-calendar
9
- Stable tag: 3.3.15
10
  License: GPLv2 or later
11
 
12
  Accessible WordPress event calendar plugin. Show events from multiple calendars on pages, in posts, or in widgets.
@@ -84,6 +84,10 @@ Translating my plugins is always appreciated. Visit <a href="https://translate.w
84
 
85
  == Changelog ==
86
 
 
 
 
 
87
  = 3.3.15 =
88
 
89
  * Bug fix: CPT base values shouldn't allow URL-invalid characters.
6
  Tested up to: 6.0
7
  Requires PHP: 7.0
8
  Text domain: my-calendar
9
+ Stable tag: 3.3.16
10
  License: GPLv2 or later
11
 
12
  Accessible WordPress event calendar plugin. Show events from multiple calendars on pages, in posts, or in widgets.
84
 
85
  == Changelog ==
86
 
87
+ = 3.3.16 =
88
+
89
+ * Bug fix: Incorrectly passed list type caused templates to encode html entities.
90
+
91
  = 3.3.15 =
92
 
93
  * Bug fix: CPT base values shouldn't allow URL-invalid characters.