Event Calendar WD – Responsive Event Calendar plugin - Version 1.1.41

Version Description

  • Fixed: Minor bug.
  • Fixed: Do not show draft events in search results.
Download this release

Release Info

Developer 10web
Plugin Icon 128x128 Event Calendar WD – Responsive Event Calendar plugin
Version 1.1.41
Comparing to
See all releases

Code changes from version 1.1.40 to 1.1.41

ecwd.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Event Calendar WD
4
  * Plugin URI: https://10web.io/plugins/wordpress-event-calendar/
5
  * Description: Event Calendar WD is an easy event management and planning tool with advanced features.
6
- * Version: 1.1.40
7
  * Author: 10Web
8
  * Author URI: https://10web.io/plugins/
9
  * Text Domain: event-calendar-wd
@@ -27,7 +27,7 @@ if(! defined( 'ECWD_URL' ) ){
27
  }
28
 
29
  if (!defined('ECWD_VERSION')) {
30
- define('ECWD_VERSION', "1.1.40");
31
  }
32
 
33
  if (!defined('ECWD_PLUGIN_MAIN_FILE')) {
3
  * Plugin Name: Event Calendar WD
4
  * Plugin URI: https://10web.io/plugins/wordpress-event-calendar/
5
  * Description: Event Calendar WD is an easy event management and planning tool with advanced features.
6
+ * Version: 1.1.41
7
  * Author: 10Web
8
  * Author URI: https://10web.io/plugins/
9
  * Text Domain: event-calendar-wd
27
  }
28
 
29
  if (!defined('ECWD_VERSION')) {
30
+ define('ECWD_VERSION', "1.1.41");
31
  }
32
 
33
  if (!defined('ECWD_PLUGIN_MAIN_FILE')) {
includes/events/ecwd-events-controller.php CHANGED
@@ -638,7 +638,6 @@ class ecwd_events_controller {
638
  update_post_meta($ev->id, 'ecwd_event_organizers', $this->sanitize_text($ev->organizers));
639
  update_post_meta($ev->id, 'ecwd_event_url', $this->sanitize_text($ev->event_url));
640
  update_post_meta($ev->id, 'ecwd_event_video', $this->sanitize_text($ev->video_url));
641
- update_post_meta($ev->id, 'exception_date', $this->sanitize_text($ev->exception_date));
642
  foreach($ev->repeat as $meta_key => $value) {
643
 
644
  if($value !== null) {
638
  update_post_meta($ev->id, 'ecwd_event_organizers', $this->sanitize_text($ev->organizers));
639
  update_post_meta($ev->id, 'ecwd_event_url', $this->sanitize_text($ev->event_url));
640
  update_post_meta($ev->id, 'ecwd_event_video', $this->sanitize_text($ev->video_url));
 
641
  foreach($ev->repeat as $meta_key => $value) {
642
 
643
  if($value !== null) {
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
- === Event Calendar WD - Responsive Event Calendar plugin ===
2
  Contributors: webdorado, 10web
3
  Tags: calendar, date, event, event calendar, events, events calendar, meeting, organizer, recurring, reservation, responsive, schedule
4
- Requires at least: 3.9
5
- Tested up to: 5.5
6
- Requires PHP: 5.2
7
- Stable tag: 1.1.40
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -20,7 +20,7 @@ Event Calendar WD is the most powerful plugin to create events and organize them
20
 
21
  [Live Demo](https://demo.10web.io/event-calendar/)
22
 
23
- [Special Offer for all Premium Plugins](https://10web.io/plugins-bundle-pricing/)
24
 
25
 
26
  https://www.youtube.com/watch?v=ksdQOc4iwXM
@@ -345,6 +345,10 @@ After downloading the ZIP file of the Event Calendar WD plugin,
345
  Event Calendar WD plugin optionally embeds Google Maps on front end to display events on the map. Embedded Google Maps behave in the exact same way as if visitor has opened Google Maps site. Google may collect data about visitors, use cookies and tracking, included their logged-in experience interaction with Google platform. Google Maps are regulated under terms of Google privacy policy https://policies.google.com/privacy. The plugin asks for your consent to collect site administrator’s email address and site URL to offer customer support, deals and discounts on premium products and more.
346
 
347
  == Changelog ==
 
 
 
 
348
  = 1.1.40 =
349
  * Fixed: Conflicts wit WP5.5.
350
 
1
+ === Event Calendar WD - Responsive Event Calendar plugin ===
2
  Contributors: webdorado, 10web
3
  Tags: calendar, date, event, event calendar, events, events calendar, meeting, organizer, recurring, reservation, responsive, schedule
4
+ Requires at least: 4.6
5
+ Tested up to: 5.7
6
+ Requires PHP: 5.3
7
+ Stable tag: 1.1.41
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
20
 
21
  [Live Demo](https://demo.10web.io/event-calendar/)
22
 
23
+ [Special Offer for all Premium Plugins](https://10web.io/wordpress-plugins/)
24
 
25
 
26
  https://www.youtube.com/watch?v=ksdQOc4iwXM
345
  Event Calendar WD plugin optionally embeds Google Maps on front end to display events on the map. Embedded Google Maps behave in the exact same way as if visitor has opened Google Maps site. Google may collect data about visitors, use cookies and tracking, included their logged-in experience interaction with Google platform. Google Maps are regulated under terms of Google privacy policy https://policies.google.com/privacy. The plugin asks for your consent to collect site administrator’s email address and site URL to offer customer support, deals and discounts on premium products and more.
346
 
347
  == Changelog ==
348
+ = 1.1.41 =
349
+ * Fixed: Minor bug.
350
+ * Fixed: Do not show draft events in search results.
351
+
352
  = 1.1.40 =
353
  * Fixed: Conflicts wit WP5.5.
354
 
uninstall.php DELETED
@@ -1,8 +0,0 @@
1
- <?php
2
- /**
3
- * Delete all settings when the plugin is uninstalled.
4
- */
5
- if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
6
- exit;
7
- }
8
-