Version Description
- Fixed: Minor bug
Download this release
Release Info
Developer | webdorado |
Plugin | WD Google Maps – Google Maps builder Plugin |
Version | 1.0.20 |
Comparing to | |
See all releases |
Code changes from version 1.0.19 to 1.0.20
- admin/controllers/GMWDControllerMaps_gmwd.php +1 -1
- featured/style.css +1 -1
- gmwd_admin_class.php +2 -2
- readme.txt +4 -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] = 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($value));
|
239 |
$format[] = $data_types[$key];
|
240 |
}
|
241 |
|
featured/style.css
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
@import url(
|
2 |
|
3 |
#main_featured_plugins_page {
|
4 |
font-family: Oswald;
|
1 |
+
@import url(https://fonts.googleapis.com/css?family=Oswald);
|
2 |
|
3 |
#main_featured_plugins_page {
|
4 |
font-family: Oswald;
|
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 |
////////////////////////////////////////////////////////////////////////////////////////
|
@@ -322,4 +322,4 @@ class GMWDAdmin{
|
|
322 |
}
|
323 |
|
324 |
|
325 |
-
?>
|
11 |
// Variables //
|
12 |
////////////////////////////////////////////////////////////////////////////////////////
|
13 |
protected static $instance = null;
|
14 |
+
private static $version = '1.0.20';
|
15 |
////////////////////////////////////////////////////////////////////////////////////////
|
16 |
// Constructor & Destructor //
|
17 |
////////////////////////////////////////////////////////////////////////////////////////
|
322 |
}
|
323 |
|
324 |
|
325 |
+
?>
|
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,9 @@ After downloading the ZIP file of the Google Maps WD plugin,
|
|
113 |
|
114 |
== Changelog ==
|
115 |
|
|
|
|
|
|
|
116 |
= 1.0.19 =
|
117 |
* Added: Address in infowindow
|
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.20
|
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.20 =
|
117 |
+
* Fixed: Minor bug
|
118 |
+
|
119 |
= 1.0.19 =
|
120 |
* Added: Address in infowindow
|
121 |
|
wd-google-maps.php
CHANGED
@@ -4,7 +4,7 @@
|
|
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
|
@@ -56,4 +56,4 @@ require_once( GMWD_DIR. '/widgets.php' );
|
|
56 |
|
57 |
|
58 |
|
59 |
-
?>
|
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.20
|
8 |
* Author: WebDorado
|
9 |
* Author URI: http://web-dorado.com/
|
10 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
56 |
|
57 |
|
58 |
|
59 |
+
?>
|