Version Description
- Fixed: Security issue
Download this release
Release Info
Developer | webdorado |
Plugin | Event Calendar WD – Responsive Event Calendar plugin |
Version | 1.1.18 |
Comparing to | |
See all releases |
Code changes from version 1.1.17 to 1.1.18
- changelog.txt +3 -0
- ecwd.php +2 -2
- includes/ecwd-functions.php +1 -2
- readme.txt +4 -1
changelog.txt
CHANGED
@@ -1,3 +1,6 @@
|
|
|
|
|
|
|
|
1 |
= 1.1.17 =
|
2 |
* New: Calendar uninstall
|
3 |
* Improved: Importing iCal all day events (Premium)
|
1 |
+
= 1.1.18 =
|
2 |
+
* Fixed: Security issue
|
3 |
+
|
4 |
= 1.1.17 =
|
5 |
* New: Calendar uninstall
|
6 |
* Improved: Importing iCal all day events (Premium)
|
ecwd.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Event Calendar WD
|
4 |
* Plugin URI: https://web-dorado.com/products/wordpress-event-calendar-wd.html
|
5 |
* Description: Event Calendar WD is an easy event management and planning tool with advanced features.
|
6 |
-
* Version: 1.1.
|
7 |
* Author: WebDorado
|
8 |
* Author URI: https://web-dorado.com/wordpress-plugins-bundle.html
|
9 |
* Text Domain: event-calendar-wd
|
@@ -25,7 +25,7 @@ if (!defined('ECWD_URL')) {
|
|
25 |
}
|
26 |
|
27 |
if (!defined('ECWD_VERSION')) {
|
28 |
-
define('ECWD_VERSION', "1.1.
|
29 |
}
|
30 |
|
31 |
if (!defined('ECWD_PLUGIN_MAIN_FILE')) {
|
3 |
* Plugin Name: Event Calendar WD
|
4 |
* Plugin URI: https://web-dorado.com/products/wordpress-event-calendar-wd.html
|
5 |
* Description: Event Calendar WD is an easy event management and planning tool with advanced features.
|
6 |
+
* Version: 1.1.18
|
7 |
* Author: WebDorado
|
8 |
* Author URI: https://web-dorado.com/wordpress-plugins-bundle.html
|
9 |
* Text Domain: event-calendar-wd
|
25 |
}
|
26 |
|
27 |
if (!defined('ECWD_VERSION')) {
|
28 |
+
define('ECWD_VERSION', "1.1.18");
|
29 |
}
|
30 |
|
31 |
if (!defined('ECWD_PLUGIN_MAIN_FILE')) {
|
includes/ecwd-functions.php
CHANGED
@@ -146,8 +146,7 @@ function ecwd_ajax() {
|
|
146 |
$args = array();
|
147 |
$display = '';
|
148 |
if (isset($_POST[ECWD_PLUGIN_PREFIX . '_link'])) {
|
149 |
-
|
150 |
-
parse_str($link, $link_arr);
|
151 |
$date = $link_arr['?date'];
|
152 |
$page = isset($link_arr['amp;cpage']) ? $link_arr['amp;cpage'] : 1;
|
153 |
|
146 |
$args = array();
|
147 |
$display = '';
|
148 |
if (isset($_POST[ECWD_PLUGIN_PREFIX . '_link'])) {
|
149 |
+
$link = esc_html(strip_tags(htmlspecialchars_decode($_POST[ECWD_PLUGIN_PREFIX . '_link']))); parse_str($link, $link_arr);
|
|
|
150 |
$date = $link_arr['?date'];
|
151 |
$page = isset($link_arr['amp;cpage']) ? $link_arr['amp;cpage'] : 1;
|
152 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: calendar, date, event, event calendar, events, events calendar, meeting, o
|
|
4 |
Requires at least: 3.9
|
5 |
Tested up to: 4.9
|
6 |
Requires PHP: 5.2
|
7 |
-
Stable tag: 1.1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -347,6 +347,9 @@ Event Calendar WD plugin optionally embeds Google Maps on front end to display e
|
|
347 |
|
348 |
== Changelog ==
|
349 |
|
|
|
|
|
|
|
350 |
= 1.1.17 =
|
351 |
* New: Calendar uninstall
|
352 |
* Improved: Importing iCal all day events (Premium)
|
4 |
Requires at least: 3.9
|
5 |
Tested up to: 4.9
|
6 |
Requires PHP: 5.2
|
7 |
+
Stable tag: 1.1.18
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
347 |
|
348 |
== Changelog ==
|
349 |
|
350 |
+
= 1.1.18 =
|
351 |
+
* Fixed: Security issue
|
352 |
+
|
353 |
= 1.1.17 =
|
354 |
* New: Calendar uninstall
|
355 |
* Improved: Importing iCal all day events (Premium)
|