Version Description
2014-07-30 = * Added extra support for corrupt polyline and polygon data - Low priority update
Download this release
Release Info
Developer | WPGMaps |
Plugin | WP Google Maps |
Version | 6.0.23 |
Comparing to | |
See all releases |
Code changes from version 6.0.22 to 6.0.23
- base/includes/wp-google-maps-polylines.php +2 -0
- readme.txt +3 -0
- wpGoogleMaps.php +7 -4
base/includes/wp-google-maps-polylines.php
CHANGED
@@ -433,6 +433,8 @@ function wpgmaps_b_admin_edit_polyline_javascript($mapid,$polyid) {
|
|
433 |
|
434 |
foreach ($poly_array as $single_poly) {
|
435 |
$poly_data_raw = str_replace(" ","",$single_poly);
|
|
|
|
|
436 |
$poly_data_raw = explode(",",$poly_data_raw);
|
437 |
$lat = $poly_data_raw[0];
|
438 |
$lng = $poly_data_raw[1];
|
433 |
|
434 |
foreach ($poly_array as $single_poly) {
|
435 |
$poly_data_raw = str_replace(" ","",$single_poly);
|
436 |
+
$poly_data_raw = str_replace(")","",$poly_data_raw );
|
437 |
+
$poly_data_raw = str_replace("(","",$poly_data_raw );
|
438 |
$poly_data_raw = explode(",",$poly_data_raw);
|
439 |
$lat = $poly_data_raw[0];
|
440 |
$lng = $poly_data_raw[1];
|
readme.txt
CHANGED
@@ -149,6 +149,9 @@ This is a must for users on IIS. Older WP Google Maps versions will not be compa
|
|
149 |
|
150 |
== Changelog ==
|
151 |
|
|
|
|
|
|
|
152 |
= 6.0.22 2014-07-25 =
|
153 |
* Fixed incorrect warning about permissions when permissions where "2755" etc.
|
154 |
* Add classes to the Google map store locator elements
|
149 |
|
150 |
== Changelog ==
|
151 |
|
152 |
+
= 6.0.23 2014-07-30 =
|
153 |
+
* Added extra support for corrupt polyline and polygon data - Low priority update
|
154 |
+
|
155 |
= 6.0.22 2014-07-25 =
|
156 |
* Fixed incorrect warning about permissions when permissions where "2755" etc.
|
157 |
* Add classes to the Google map store locator elements
|
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 |
-
/* 6.0.
|
|
|
|
|
|
|
12 |
* Fixed incorrect warning about permissions when permissions where "2755" etc.
|
13 |
* Add classes to the google map store locator elements
|
14 |
*
|
@@ -67,8 +70,8 @@ $wpgmza_tblname_poly = $wpdb->prefix . "wpgmza_polygon";
|
|
67 |
$wpgmza_tblname_polylines = $wpdb->prefix . "wpgmza_polylines";
|
68 |
$wpgmza_tblname_categories = $wpdb->prefix. "wpgmza_categories";
|
69 |
$wpgmza_tblname_category_maps = $wpdb->prefix. "wpgmza_category_maps";
|
70 |
-
$wpgmza_version = "6.0.
|
71 |
-
$wpgmza_p_version = "6.0.
|
72 |
$wpgmza_t = "basic";
|
73 |
define("WPGMAPS", $wpgmza_version);
|
74 |
define("WPGMAPS_DIR",plugin_dir_url(__FILE__));
|
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.23
|
7 |
Author: WP Google Maps
|
8 |
Author URI: http://www.wpgmaps.com
|
9 |
*/
|
10 |
|
11 |
+
/* 6.0.23
|
12 |
+
* Added extra support for corrupt polyline and polygon data
|
13 |
+
*
|
14 |
+
* 6.0.22
|
15 |
* Fixed incorrect warning about permissions when permissions where "2755" etc.
|
16 |
* Add classes to the google map store locator elements
|
17 |
*
|
70 |
$wpgmza_tblname_polylines = $wpdb->prefix . "wpgmza_polylines";
|
71 |
$wpgmza_tblname_categories = $wpdb->prefix. "wpgmza_categories";
|
72 |
$wpgmza_tblname_category_maps = $wpdb->prefix. "wpgmza_category_maps";
|
73 |
+
$wpgmza_version = "6.0.23";
|
74 |
+
$wpgmza_p_version = "6.0.23";
|
75 |
$wpgmza_t = "basic";
|
76 |
define("WPGMAPS", $wpgmza_version);
|
77 |
define("WPGMAPS_DIR",plugin_dir_url(__FILE__));
|