Version Description
- Fixed update bug
Download this release
Release Info
Developer | WPGMaps |
Plugin | WP Google Maps |
Version | 5.17 |
Comparing to | |
See all releases |
Code changes from version 5.16 to 5.17
- readme.txt +4 -1
- wpGoogleMaps.php +5 -3
readme.txt
CHANGED
@@ -85,7 +85,10 @@ Previous versions may cause your blog to slow down. Upgrading to 4.5 will get ri
|
|
85 |
|
86 |
== Changelog ==
|
87 |
|
88 |
-
= 5.
|
|
|
|
|
|
|
89 |
* Plugin now checks to see if the Google Maps API is already loaded before trying to load it again
|
90 |
* Fixed some SSL bugs
|
91 |
|
85 |
|
86 |
== Changelog ==
|
87 |
|
88 |
+
= 5.17 =
|
89 |
+
* Fixed update bug
|
90 |
+
|
91 |
+
= 5.16 =
|
92 |
* Plugin now checks to see if the Google Maps API is already loaded before trying to load it again
|
93 |
* Fixed some SSL bugs
|
94 |
|
wpGoogleMaps.php
CHANGED
@@ -3,7 +3,7 @@
|
|
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: 5.
|
7 |
Author: WP Google Maps
|
8 |
Author URI: http://www.wpgmaps.com
|
9 |
*/
|
@@ -37,8 +37,8 @@ $wpgmza_tblname_maps = $wpdb->prefix . "wpgmza_maps";
|
|
37 |
$wpgmza_tblname_poly = $wpdb->prefix . "wpgmza_polygon";
|
38 |
$wpgmza_tblname_polylines = $wpdb->prefix . "wpgmza_polylines";
|
39 |
$wpgmza_tblname_categories = $wpdb->prefix. "wpgmza_categories";
|
40 |
-
$wpgmza_version = "5.
|
41 |
-
$wpgmza_p_version = "5.
|
42 |
$wpgmza_t = "basic";
|
43 |
|
44 |
add_action('admin_head', 'wpgmaps_head');
|
@@ -64,6 +64,8 @@ function wpgmaps_activate() {
|
|
64 |
delete_option("WPGMZA");
|
65 |
|
66 |
wpgmaps_handle_db();
|
|
|
|
|
67 |
|
68 |
$wpgmza_data = get_option("WPGMZA");
|
69 |
if (!$wpgmza_data) {
|
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: 5.17
|
7 |
Author: WP Google Maps
|
8 |
Author URI: http://www.wpgmaps.com
|
9 |
*/
|
37 |
$wpgmza_tblname_poly = $wpdb->prefix . "wpgmza_polygon";
|
38 |
$wpgmza_tblname_polylines = $wpdb->prefix . "wpgmza_polylines";
|
39 |
$wpgmza_tblname_categories = $wpdb->prefix. "wpgmza_categories";
|
40 |
+
$wpgmza_version = "5.17";
|
41 |
+
$wpgmza_p_version = "5.17";
|
42 |
$wpgmza_t = "basic";
|
43 |
|
44 |
add_action('admin_head', 'wpgmaps_head');
|
64 |
delete_option("WPGMZA");
|
65 |
|
66 |
wpgmaps_handle_db();
|
67 |
+
wpgmaps_update_all_xml_file();
|
68 |
+
|
69 |
|
70 |
$wpgmza_data = get_option("WPGMZA");
|
71 |
if (!$wpgmza_data) {
|