Version Description
Fixed: Bug on PHP 7
Download this release
Release Info
Developer | webdorado |
Plugin | Calendar by WD – Responsive Event Calendar |
Version | 1.5.49 |
Comparing to | |
See all releases |
Code changes from version 1.5.48 to 1.5.49
- calendar.php +2 -2
- front_end/bigcalendarmonth.php +0 -1
- readme.txt +4 -1
- spider_calendar_admin_class.php +1 -1
- spidercalendar_upcoming_events_widget.php +1 -1
- widget_spider_calendar.php +1 -1
calendar.php
CHANGED
@@ -3,11 +3,11 @@
|
|
3 |
Plugin Name: Spider Event Calendar
|
4 |
Plugin URI: https://web-dorado.com/products/wordpress-calendar.html
|
5 |
Description: Spider Event Calendar is a highly configurable product which allows you to have multiple organized events. Spider Event Calendar is an extraordinary user friendly extension.
|
6 |
-
Version: 1.5.
|
7 |
Author: https://web-dorado.com/
|
8 |
License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
9 |
*/
|
10 |
-
$wd_spider_calendar_version="1.5.
|
11 |
// LANGUAGE localization.
|
12 |
function sp_calendar_language_load() {
|
13 |
load_plugin_textdomain('sp_calendar', FALSE, basename(dirname(__FILE__)) . '/languages');
|
3 |
Plugin Name: Spider Event Calendar
|
4 |
Plugin URI: https://web-dorado.com/products/wordpress-calendar.html
|
5 |
Description: Spider Event Calendar is a highly configurable product which allows you to have multiple organized events. Spider Event Calendar is an extraordinary user friendly extension.
|
6 |
+
Version: 1.5.49
|
7 |
Author: https://web-dorado.com/
|
8 |
License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
9 |
*/
|
10 |
+
$wd_spider_calendar_version="1.5.49";
|
11 |
// LANGUAGE localization.
|
12 |
function sp_calendar_language_load() {
|
13 |
load_plugin_textdomain('sp_calendar', FALSE, basename(dirname(__FILE__)) . '/languages');
|
front_end/bigcalendarmonth.php
CHANGED
@@ -886,7 +886,6 @@ function evented_days($r, $number_of_shown_evetns, $ev_id, $i,$evented_color_bg,
|
|
886 |
|
887 |
if(str_replace('#','',category_color($ev_id[0]))=="") $cat_col_without_color = $evented_color_bg;
|
888 |
else $cat_col_without_color = '#' . str_replace('#','',category_color($ev_id[0]));
|
889 |
-
|
890 |
if($r>1){
|
891 |
if(category_color($ev_id[$r-1])=='#')
|
892 |
$cat_color_for_last='#' . str_replace('#','',$evented_color_bg);
|
886 |
|
887 |
if(str_replace('#','',category_color($ev_id[0]))=="") $cat_col_without_color = $evented_color_bg;
|
888 |
else $cat_col_without_color = '#' . str_replace('#','',category_color($ev_id[0]));
|
|
|
889 |
if($r>1){
|
890 |
if(category_color($ev_id[$r-1])=='#')
|
891 |
$cat_color_for_last='#' . str_replace('#','',$evented_color_bg);
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://web-dorado.com/products/wordpress-calendar.html
|
|
4 |
Tags: calendar, date, event, event calendar, events, events calendar, meeting, organizer, recurring, reservation, responsive, schedule
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 4.7
|
7 |
-
Stable tag: 1.5.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -142,6 +142,9 @@ Vietnamese (vi)
|
|
142 |
|
143 |
== Changelog ==
|
144 |
|
|
|
|
|
|
|
145 |
= 1.5.48 =
|
146 |
Added: Icelandic translation
|
147 |
|
4 |
Tags: calendar, date, event, event calendar, events, events calendar, meeting, organizer, recurring, reservation, responsive, schedule
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 4.7
|
7 |
+
Stable tag: 1.5.49
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
142 |
|
143 |
== Changelog ==
|
144 |
|
145 |
+
= 1.5.49 =
|
146 |
+
Fixed: Bug on PHP 7
|
147 |
+
|
148 |
= 1.5.48 =
|
149 |
Added: Icelandic translation
|
150 |
|
spider_calendar_admin_class.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
class SC_Admin {
|
4 |
public static $instance = null;
|
5 |
-
protected $version = '1.5.
|
6 |
public $prefix = "sc_";
|
7 |
protected $notices = null;
|
8 |
public static function get_instance() {
|
2 |
|
3 |
class SC_Admin {
|
4 |
public static $instance = null;
|
5 |
+
protected $version = '1.5.49';
|
6 |
public $prefix = "sc_";
|
7 |
protected $notices = null;
|
8 |
public static function get_instance() {
|
spidercalendar_upcoming_events_widget.php
CHANGED
@@ -18,7 +18,7 @@ if (!class_exists('WP_Widget')) {
|
|
18 |
|
19 |
class upcoming_events extends WP_Widget {
|
20 |
// Constructor //
|
21 |
-
function
|
22 |
$widget_ops = array(
|
23 |
'classname' => 'upcoming_events',
|
24 |
'description' => ''
|
18 |
|
19 |
class upcoming_events extends WP_Widget {
|
20 |
// Constructor //
|
21 |
+
function __construct() {
|
22 |
$widget_ops = array(
|
23 |
'classname' => 'upcoming_events',
|
24 |
'description' => ''
|
widget_spider_calendar.php
CHANGED
@@ -4,7 +4,7 @@ if (!class_exists('WP_Widget')) {
|
|
4 |
}
|
5 |
class spider_calendar extends WP_Widget {
|
6 |
// Constructor //
|
7 |
-
function
|
8 |
$widget_ops = array(
|
9 |
'classname' => 'spider_calendar',
|
10 |
'description' => 'Spider Calendar is a highly configurable product which allows you to have multiple organized events.'
|
4 |
}
|
5 |
class spider_calendar extends WP_Widget {
|
6 |
// Constructor //
|
7 |
+
function __construct(){
|
8 |
$widget_ops = array(
|
9 |
'classname' => 'spider_calendar',
|
10 |
'description' => 'Spider Calendar is a highly configurable product which allows you to have multiple organized events.'
|