Version Description
- Small bug fix on the WP Google Maps welcome page
Download this release
Release Info
Developer | WPGMaps |
Plugin | WP Google Maps |
Version | 6.0.11 |
Comparing to | |
See all releases |
Code changes from version 6.0.10 to 6.0.11
- readme.txt +3 -0
- wpGoogleMaps.php +7 -4
readme.txt
CHANGED
@@ -99,6 +99,9 @@ Previous versions may cause your blog to slow down. Upgrading to 4.5 will get ri
|
|
99 |
|
100 |
== Changelog ==
|
101 |
|
|
|
|
|
|
|
102 |
= 6.0.10 =
|
103 |
* Tested on WP 3.9
|
104 |
* Fixed a bug that only displayed two map marker categories for the store locator (pro)
|
99 |
|
100 |
== Changelog ==
|
101 |
|
102 |
+
= 6.0.11 =
|
103 |
+
* Small bug fix on the WP Google Maps welcome page
|
104 |
+
|
105 |
= 6.0.10 =
|
106 |
* Tested on WP 3.9
|
107 |
* Fixed a bug that only displayed two map marker categories for the store locator (pro)
|
wpGoogleMaps.php
CHANGED
@@ -3,12 +3,15 @@
|
|
3 |
Plugin Name: WP Google Maps
|
4 |
Plugin URI: http://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: 6.0.
|
7 |
Author: WP Google Maps
|
8 |
Author URI: http://www.wpgmaps.com
|
9 |
*/
|
10 |
|
11 |
/*
|
|
|
|
|
|
|
12 |
* 6.0.10
|
13 |
* Fixed a bug that used the category icon instead of a defined marker icon when there was a category icon set
|
14 |
* Fixed a bug that only displayed two map marker categories for the store locator (pro)
|
@@ -93,8 +96,8 @@ $wpgmza_tblname_poly = $wpdb->prefix . "wpgmza_polygon";
|
|
93 |
$wpgmza_tblname_polylines = $wpdb->prefix . "wpgmza_polylines";
|
94 |
$wpgmza_tblname_categories = $wpdb->prefix. "wpgmza_categories";
|
95 |
$wpgmza_tblname_category_maps = $wpdb->prefix. "wpgmza_category_maps";
|
96 |
-
$wpgmza_version = "6.0.
|
97 |
-
$wpgmza_p_version = "6.0.
|
98 |
$wpgmza_t = "basic";
|
99 |
define("WPGMAPS", $wpgmza_version);
|
100 |
define("WPGMAPS_DIR",plugin_dir_url(__FILE__));
|
@@ -242,7 +245,7 @@ function wpgmaps_init() {
|
|
242 |
if (isset($_GET['page']) && $_GET['page'] == 'wp-google-maps-menu') {
|
243 |
|
244 |
/* check if their using APC object cache, if yes, do nothing with the welcome page as it causes issues when caching the DB options */
|
245 |
-
if (class_exists("
|
246 |
/* do nothing here as this caches the "first time" option and the welcome page just loads over and over again. quite annoying really... */
|
247 |
} else {
|
248 |
if (isset($_GET['override']) && $_GET['override'] == "1") {
|
3 |
Plugin Name: WP Google Maps
|
4 |
Plugin URI: http://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: 6.0.11
|
7 |
Author: WP Google Maps
|
8 |
Author URI: http://www.wpgmaps.com
|
9 |
*/
|
10 |
|
11 |
/*
|
12 |
+
* 6.0.11
|
13 |
+
* Small bug fix for the welcome page
|
14 |
+
*
|
15 |
* 6.0.10
|
16 |
* Fixed a bug that used the category icon instead of a defined marker icon when there was a category icon set
|
17 |
* Fixed a bug that only displayed two map marker categories for the store locator (pro)
|
96 |
$wpgmza_tblname_polylines = $wpdb->prefix . "wpgmza_polylines";
|
97 |
$wpgmza_tblname_categories = $wpdb->prefix. "wpgmza_categories";
|
98 |
$wpgmza_tblname_category_maps = $wpdb->prefix. "wpgmza_category_maps";
|
99 |
+
$wpgmza_version = "6.0.11";
|
100 |
+
$wpgmza_p_version = "6.0.11";
|
101 |
$wpgmza_t = "basic";
|
102 |
define("WPGMAPS", $wpgmza_version);
|
103 |
define("WPGMAPS_DIR",plugin_dir_url(__FILE__));
|
245 |
if (isset($_GET['page']) && $_GET['page'] == 'wp-google-maps-menu') {
|
246 |
|
247 |
/* check if their using APC object cache, if yes, do nothing with the welcome page as it causes issues when caching the DB options */
|
248 |
+
if (class_exists("APC_Object_Cache")) {
|
249 |
/* do nothing here as this caches the "first time" option and the welcome page just loads over and over again. quite annoying really... */
|
250 |
} else {
|
251 |
if (isset($_GET['override']) && $_GET['override'] == "1") {
|