Calendar by WD – Responsive Event Calendar - Version 1.5.54

Version Description

Fixed: Network activate issue

Download this release

Release Info

Developer webdorado
Plugin Icon 128x128 Calendar by WD – Responsive Event Calendar
Version 1.5.54
Comparing to
See all releases

Code changes from version 1.5.53 to 1.5.54

Files changed (2) hide show
  1. calendar.php +21 -3
  2. readme.txt +5 -2
calendar.php CHANGED
@@ -3,12 +3,12 @@
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.53
7
  Author: WebDorado
8
  Author URI: https://web-dorado.com
9
  License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
10
  */
11
- $wd_spider_calendar_version="1.5.53";
12
  // LANGUAGE localization.
13
  function sp_calendar_language_load() {
14
  load_plugin_textdomain('sp_calendar', FALSE, basename(dirname(__FILE__)) . '/languages');
@@ -1385,6 +1385,24 @@ function calendar_export() {
1385
  <?php
1386
  }
1387
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1388
  // Activate plugin.
1389
  function SpiderCalendar_activate() {
1390
  global $wpdb;
@@ -1433,7 +1451,7 @@ $spider_category_event_table = "CREATE TABLE IF NOT EXISTS `" . $wpdb->prefix .
1433
  require_once "spider_calendar_update.php";
1434
  spider_calendar_chech_update();
1435
  }
1436
- register_activation_hook(__FILE__, 'SpiderCalendar_activate');
1437
 
1438
  function spider_calendar_ajax_func() {
1439
  ?>
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.54
7
  Author: WebDorado
8
  Author URI: https://web-dorado.com
9
  License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
10
  */
11
+ $wd_spider_calendar_version="1.5.54";
12
  // LANGUAGE localization.
13
  function sp_calendar_language_load() {
14
  load_plugin_textdomain('sp_calendar', FALSE, basename(dirname(__FILE__)) . '/languages');
1385
  <?php
1386
  }
1387
 
1388
+ function spidercal_activate($networkwide){
1389
+ if (function_exists('is_multisite') && is_multisite()) {
1390
+ // Check if it is a network activation - if so, run the activation function for each blog id.
1391
+ if ($networkwide) {
1392
+ global $wpdb;
1393
+ // Get all blog ids.
1394
+ $blogids = $wpdb->get_col("SELECT blog_id FROM $wpdb->blogs");
1395
+ foreach ($blogids as $blog_id) {
1396
+ switch_to_blog($blog_id);
1397
+ SpiderCalendar_activate();
1398
+ restore_current_blog();
1399
+ }
1400
+ return;
1401
+ }
1402
+ }
1403
+ SpiderCalendar_activate();
1404
+ }
1405
+
1406
  // Activate plugin.
1407
  function SpiderCalendar_activate() {
1408
  global $wpdb;
1451
  require_once "spider_calendar_update.php";
1452
  spider_calendar_chech_update();
1453
  }
1454
+ register_activation_hook(__FILE__, 'spidercal_activate');
1455
 
1456
  function spider_calendar_ajax_func() {
1457
  ?>
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Calendar by WD - Responsive Event Calendar for WordPress ===
2
- Contributors: webdorado
3
  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, calendars, event manager, calendar widget, event registration, event management, agenda, holiday calendar , scheduling, free calendar, Calender, upcoming events , event widget , event list, calendar localization, editorial calendar, Interactive Calendar, news calendar, appointment, event tracking, event organizer, upcoming events widget, event page, event bookings, recurring events, conference, dates, times, venue, responsive calendar, seminar, summit, facebook integration, widget, online calendar, calendar shortcode, events list, custom calendar, google calendar, event subscription, ical, facebook event calendar, event filter, calendar manager, online reservation, booking calendar, event booking, reservation calendar, customizable calendar, upcoming events calendar, events feed, event ticketing, rsvp, tickets, bookings
5
  Requires at least: 3.4
6
  Tested up to: 4.8
7
- Stable tag: 1.5.53
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -151,6 +151,9 @@ Vietnamese (vi)
151
 
152
  == Changelog ==
153
 
 
 
 
154
  = 1.5.53 =
155
  Changed: Event popup design
156
  Fixed: Generate shortcode popup styles
1
  === Calendar by WD - Responsive Event Calendar for WordPress ===
2
+ Contributors: webdorado, wdsupport
3
  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, calendars, event manager, calendar widget, event registration, event management, agenda, holiday calendar , scheduling, free calendar, Calender, upcoming events , event widget , event list, calendar localization, editorial calendar, Interactive Calendar, news calendar, appointment, event tracking, event organizer, upcoming events widget, event page, event bookings, recurring events, conference, dates, times, venue, responsive calendar, seminar, summit, facebook integration, widget, online calendar, calendar shortcode, events list, custom calendar, google calendar, event subscription, ical, facebook event calendar, event filter, calendar manager, online reservation, booking calendar, event booking, reservation calendar, customizable calendar, upcoming events calendar, events feed, event ticketing, rsvp, tickets, bookings
5
  Requires at least: 3.4
6
  Tested up to: 4.8
7
+ Stable tag: 1.5.54
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
151
 
152
  == Changelog ==
153
 
154
+ = 1.5.54 =
155
+ Fixed: Network activate issue
156
+
157
  = 1.5.53 =
158
  Changed: Event popup design
159
  Fixed: Generate shortcode popup styles