Version Description
- 2018-07-02 :- Medium Priority =
- Fixed GDPR back end warning appearing when GDPR compliance is enabled
Download this release
Release Info
Developer | perryrylance |
Plugin | WP Google Maps |
Version | 7.10.18 |
Comparing to | |
See all releases |
Code changes from version 7.10.17 to 7.10.18
- includes/class.gdpr-compliance.php +1 -1
- readme.txt +3 -0
- wpGoogleMaps.php +4 -1
includes/class.gdpr-compliance.php
CHANGED
@@ -148,7 +148,7 @@ Where this notice is displayed in place of a map, agreeing to this notice will s
|
|
148 |
|
149 |
$settings = get_option('WPGMZA_OTHER_SETTINGS');
|
150 |
|
151 |
-
if(!empty($settings
|
152 |
return;
|
153 |
|
154 |
if(!empty($_COOKIE['wpgmza-gdpr-user-has-dismissed-admin-warning']))
|
148 |
|
149 |
$settings = get_option('WPGMZA_OTHER_SETTINGS');
|
150 |
|
151 |
+
if(!empty($settings['wpgmza_gdpr_enabled']))
|
152 |
return;
|
153 |
|
154 |
if(!empty($_COOKIE['wpgmza-gdpr-user-has-dismissed-admin-warning']))
|
readme.txt
CHANGED
@@ -215,6 +215,9 @@ Please upgrade your version of WP Google Maps to version 6.0.27 as it includes m
|
|
215 |
|
216 |
== Changelog ==
|
217 |
|
|
|
|
|
|
|
218 |
= 7.10.17 - 2018-06-29 :- Medium Priority =
|
219 |
* Fixed country restriction broken in store locator
|
220 |
* Added dismissable admin GDPR warning when GDPR compliance has been switched off
|
215 |
|
216 |
== Changelog ==
|
217 |
|
218 |
+
= 7.10.18 - 2018-07-02 :- Medium Priority =
|
219 |
+
* Fixed GDPR back end warning appearing when GDPR compliance is enabled
|
220 |
+
|
221 |
= 7.10.17 - 2018-06-29 :- Medium Priority =
|
222 |
* Fixed country restriction broken in store locator
|
223 |
* Added dismissable admin GDPR warning when GDPR compliance has been switched off
|
wpGoogleMaps.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: WP Google Maps
|
4 |
Plugin URI: https://www.wpgmaps.com
|
5 |
Description: The easiest to use Google Maps plugin! Create custom Google Maps with high quality markers containing locations, descriptions, images and links. Add your customized map to your WordPress posts and/or pages quickly and easily with the supplied shortcode. No fuss.
|
6 |
-
Version: 7.10.
|
7 |
Author: WP Google Maps
|
8 |
Author URI: https://www.wpgmaps.com
|
9 |
Text Domain: wp-google-maps
|
@@ -11,6 +11,9 @@ Domain Path: /languages
|
|
11 |
*/
|
12 |
|
13 |
/*
|
|
|
|
|
|
|
14 |
* 7.10.17 - 2018-06-29 :- Medium Priority
|
15 |
* Fixed country restriction broken in store locator
|
16 |
* Added dismissable admin GDPR warning when GDPR compliance has been switched off
|
3 |
Plugin Name: WP Google Maps
|
4 |
Plugin URI: https://www.wpgmaps.com
|
5 |
Description: The easiest to use Google Maps plugin! Create custom Google Maps with high quality markers containing locations, descriptions, images and links. Add your customized map to your WordPress posts and/or pages quickly and easily with the supplied shortcode. No fuss.
|
6 |
+
Version: 7.10.18
|
7 |
Author: WP Google Maps
|
8 |
Author URI: https://www.wpgmaps.com
|
9 |
Text Domain: wp-google-maps
|
11 |
*/
|
12 |
|
13 |
/*
|
14 |
+
* 7.10.18 - 2018-07-02 :- Medium Priority
|
15 |
+
* Fixed GDPR back end warning appearing when GDPR compliance is enabled
|
16 |
+
*
|
17 |
* 7.10.17 - 2018-06-29 :- Medium Priority
|
18 |
* Fixed country restriction broken in store locator
|
19 |
* Added dismissable admin GDPR warning when GDPR compliance has been switched off
|