Version Description
- Fixed: Bug on export
- Fixed: Conflict with wysiwyg editor
- Changed: phpexcel and poi fields stripslashes
Download this release
Release Info
Developer | webdorado |
Plugin | WD Google Maps – Google Maps builder Plugin |
Version | 1.0.23 |
Comparing to | |
See all releases |
Code changes from version 1.0.22 to 1.0.23
- admin/controllers/GMWDControllerMaps_gmwd.php +1 -1
- css/admin_main.css +1 -8
- gmwd_admin_class.php +1 -1
- readme.txt +6 -1
- wd-google-maps.php +2 -2
admin/controllers/GMWDControllerMaps_gmwd.php
CHANGED
@@ -235,7 +235,7 @@ class GMWDControllerMaps_gmwd extends GMWDController{
|
|
235 |
if($key == "title" || $key == "address"){
|
236 |
$value = str_replace("@@@",'"',$value);
|
237 |
}
|
238 |
-
$data[$key] = sanitize_text_field(esc_html($value));
|
239 |
$format[] = $data_types[$key];
|
240 |
}
|
241 |
|
235 |
if($key == "title" || $key == "address"){
|
236 |
$value = str_replace("@@@",'"',$value);
|
237 |
}
|
238 |
+
$data[$key] = sanitize_text_field(esc_html(stripslashes($value)));
|
239 |
$format[] = $data_types[$key];
|
240 |
}
|
241 |
|
css/admin_main.css
CHANGED
@@ -905,16 +905,9 @@ a.wd-btn-icon{
|
|
905 |
-webkit-box-shadow: 0 0 5px #aaa;
|
906 |
box-shadow: 0 0 5px #aaa;
|
907 |
border-radius:4px;
|
908 |
-
}
|
909 |
-
.ui-widget {
|
910 |
-
font-size: 1.1em;
|
911 |
-
}
|
912 |
-
.ui-widget .ui-widget {
|
913 |
-
font-size: 1em;
|
914 |
-
}
|
915 |
-
.ui-widget-content {
|
916 |
background: rgba(0,0,0,0.8) ;
|
917 |
color: #fff;
|
|
|
918 |
}
|
919 |
|
920 |
.gmwd_download_markers {
|
905 |
-webkit-box-shadow: 0 0 5px #aaa;
|
906 |
box-shadow: 0 0 5px #aaa;
|
907 |
border-radius:4px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
908 |
background: rgba(0,0,0,0.8) ;
|
909 |
color: #fff;
|
910 |
+
font-size: 1em;
|
911 |
}
|
912 |
|
913 |
.gmwd_download_markers {
|
gmwd_admin_class.php
CHANGED
@@ -11,7 +11,7 @@ class GMWDAdmin{
|
|
11 |
// Variables //
|
12 |
////////////////////////////////////////////////////////////////////////////////////////
|
13 |
protected static $instance = null;
|
14 |
-
private static $version = '1.0.
|
15 |
////////////////////////////////////////////////////////////////////////////////////////
|
16 |
// Constructor & Destructor //
|
17 |
////////////////////////////////////////////////////////////////////////////////////////
|
11 |
// Variables //
|
12 |
////////////////////////////////////////////////////////////////////////////////////////
|
13 |
protected static $instance = null;
|
14 |
+
private static $version = '1.0.23';
|
15 |
////////////////////////////////////////////////////////////////////////////////////////
|
16 |
// Constructor & Destructor //
|
17 |
////////////////////////////////////////////////////////////////////////////////////////
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://web-dorado.com/products/wordpress-google-maps-plugin.html
|
|
4 |
Tags: directions, google map, google map plugin, google maps, google maps plugin, map, map markers, map plugin, map widget, maps, wp google map, wp google maps
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 4.6
|
7 |
-
Stable tag: 1.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -113,6 +113,11 @@ After downloading the ZIP file of the Google Maps WD plugin,
|
|
113 |
|
114 |
== Changelog ==
|
115 |
|
|
|
|
|
|
|
|
|
|
|
116 |
= 1.0.22 =
|
117 |
* Added: "Show in Info Window" option
|
118 |
|
4 |
Tags: directions, google map, google map plugin, google maps, google maps plugin, map, map markers, map plugin, map widget, maps, wp google map, wp google maps
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 4.6
|
7 |
+
Stable tag: 1.0.23
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
113 |
|
114 |
== Changelog ==
|
115 |
|
116 |
+
= 1.0.23 =
|
117 |
+
* Fixed: Bug on export
|
118 |
+
* Fixed: Conflict with wysiwyg editor
|
119 |
+
* Changed: phpexcel and poi fields stripslashes
|
120 |
+
|
121 |
= 1.0.22 =
|
122 |
* Added: "Show in Info Window" option
|
123 |
|
wd-google-maps.php
CHANGED
@@ -4,12 +4,12 @@
|
|
4 |
* Plugin Name: Google Maps WD
|
5 |
* Plugin URI: https://web-dorado.com/products/wordpress-google-maps-plugin.html
|
6 |
* Description: Google Maps WD is an intuitive tool for creating Google maps with advanced markers, custom layers and overlays for your website.
|
7 |
-
* Version: 1.0.
|
8 |
* Author: WebDorado
|
9 |
* Author URI: http://web-dorado.com/
|
10 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
*/
|
12 |
-
|
13 |
define('GMWD_DIR', WP_PLUGIN_DIR . "/" . plugin_basename(dirname(__FILE__)));
|
14 |
define('GMWD_NAME', plugin_basename(dirname(__FILE__)));
|
15 |
define('GMWD_URL', plugins_url(plugin_basename(dirname(__FILE__))));
|
4 |
* Plugin Name: Google Maps WD
|
5 |
* Plugin URI: https://web-dorado.com/products/wordpress-google-maps-plugin.html
|
6 |
* Description: Google Maps WD is an intuitive tool for creating Google maps with advanced markers, custom layers and overlays for your website.
|
7 |
+
* Version: 1.0.23
|
8 |
* Author: WebDorado
|
9 |
* Author URI: http://web-dorado.com/
|
10 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
*/
|
12 |
+
|
13 |
define('GMWD_DIR', WP_PLUGIN_DIR . "/" . plugin_basename(dirname(__FILE__)));
|
14 |
define('GMWD_NAME', plugin_basename(dirname(__FILE__)));
|
15 |
define('GMWD_URL', plugins_url(plugin_basename(dirname(__FILE__))));
|