WP Google Maps - Version 4.18

Version Description

  • Fixed an IE9 bug
Download this release

Release Info

Developer WPGMaps
Plugin Icon 128x128 WP Google Maps
Version 4.18
Comparing to
See all releases

Code changes from version 4.17 to 4.18

Files changed (2) hide show
  1. readme.txt +4 -1
  2. wpGoogleMaps.php +4 -4
readme.txt CHANGED
@@ -10,7 +10,7 @@ The easiest to use map plugin! Create custom maps with high quality markers cont
10
 
11
  == Description ==
12
 
13
- The easiest to use Google maps plugin! Create custom maps with high quality markers containing locations, descriptions, images and links and directions. Add your customized map to your WordPress posts and/or pages quickly and easily with the supplied shortcode. No fuss. no iFrames and super easy to use!
14
 
15
  = Key Features =
16
  * Latest Google Maps API (V3)
@@ -75,6 +75,9 @@ Previous versions may cause your blog to slow down. Upgrading to 4.5 will get ri
75
 
76
  == Changelog ==
77
 
 
 
 
78
  = 4.17 =
79
  * Added support for KML/GeoRSS layers
80
  * Fixed the directions box styling error in Firefox
10
 
11
  == Description ==
12
 
13
+ The easiest to use map plugin! Create custom maps with high quality markers containing locations, descriptions, images and links and directions. Add your customized map to your WordPress posts and/or pages quickly and easily with the supplied shortcode. No fuss. no iFrames and super easy to use!
14
 
15
  = Key Features =
16
  * Latest Google Maps API (V3)
75
 
76
  == Changelog ==
77
 
78
+ = 4.18 =
79
+ * Fixed an IE9 bug
80
+
81
  = 4.17 =
82
  * Added support for KML/GeoRSS layers
83
  * Fixed the directions box styling error in Firefox
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: 4.17
7
  Author: WP Google Maps
8
  Author URI: http://www.wpgmaps.com
9
  */
@@ -28,8 +28,8 @@ $wpgmza_p = false;
28
  $wpgmza_g = false;
29
  $wpgmza_tblname = $wpdb->prefix . "wpgmza";
30
  $wpgmza_tblname_maps = $wpdb->prefix . "wpgmza_maps";
31
- $wpgmza_version = "4.17";
32
- $wpgmza_p_version = "4.17";
33
  $wpgmza_t = "basic";
34
 
35
  add_action('admin_head', 'wpgmaps_head');
@@ -1713,7 +1713,7 @@ function wpgmaps_check_shortcode() {
1713
  if (is_array($match)) {
1714
  foreach($match as $key => $val) {
1715
  $pos = strpos($val, "wpgmza");
1716
- echo "<!-- $val -->\n";
1717
  if ($pos === false) { } else { $short_code_active = true; }
1718
  }
1719
  }
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: 4.18
7
  Author: WP Google Maps
8
  Author URI: http://www.wpgmaps.com
9
  */
28
  $wpgmza_g = false;
29
  $wpgmza_tblname = $wpdb->prefix . "wpgmza";
30
  $wpgmza_tblname_maps = $wpdb->prefix . "wpgmza_maps";
31
+ $wpgmza_version = "4.18";
32
+ $wpgmza_p_version = "4.18";
33
  $wpgmza_t = "basic";
34
 
35
  add_action('admin_head', 'wpgmaps_head');
1713
  if (is_array($match)) {
1714
  foreach($match as $key => $val) {
1715
  $pos = strpos($val, "wpgmza");
1716
+
1717
  if ($pos === false) { } else { $short_code_active = true; }
1718
  }
1719
  }