WP Google Maps - Version 6.0.3

Version Description

  • Small bug fix
Download this release

Release Info

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

Code changes from version 6.0.2 to 6.0.3

Files changed (2) hide show
  1. readme.txt +3 -0
  2. wpGoogleMaps.php +14 -5
readme.txt CHANGED
@@ -94,6 +94,9 @@ Previous versions may cause your blog to slow down. Upgrading to 4.5 will get ri
94
 
95
  == Changelog ==
96
 
 
 
 
97
  = 6.0.2 =
98
  * Style bug fix
99
 
94
 
95
  == Changelog ==
96
 
97
+ = 6.0.3 =
98
+ * Small bug fix
99
+
100
  = 6.0.2 =
101
  * Style bug fix
102
 
wpGoogleMaps.php CHANGED
@@ -3,12 +3,20 @@
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.2
7
  Author: WP Google Maps
8
  Author URI: http://www.wpgmaps.com
9
  */
10
 
11
  /*
 
 
 
 
 
 
 
 
12
  *
13
  * 6.0.0
14
  * Fixed a width bug with the datatables layout. Now falls in line with the map width.
@@ -53,8 +61,8 @@ $wpgmza_tblname_poly = $wpdb->prefix . "wpgmza_polygon";
53
  $wpgmza_tblname_polylines = $wpdb->prefix . "wpgmza_polylines";
54
  $wpgmza_tblname_categories = $wpdb->prefix. "wpgmza_categories";
55
  $wpgmza_tblname_category_maps = $wpdb->prefix. "wpgmza_category_maps";
56
- $wpgmza_version = "6.0.2";
57
- $wpgmza_p_version = "6.0.2";
58
  $wpgmza_t = "basic";
59
  define("WPGMAPS", $wpgmza_version);
60
  define("WPGMAPS_DIR",plugin_dir_url(__FILE__));
@@ -854,8 +862,9 @@ function wpgmaps_admin_javascript_basic() {
854
  var infoWindow = new google.maps.InfoWindow();
855
  <?php
856
  $wpgmza_settings = get_option("WPGMZA_OTHER_SETTINGS");
857
- if (isset($wpgmza_settings['wpgmza_settings_infowindow_width'])) { $wpgmza_settings_infowindow_width = $wpgmza_settings['wpgmza_settings_infowindow_width']; }
858
- if (!isset($wpgmza_settings_infowindow_width)) { $wpgmza_settings_infowindow_width = "250"; }
 
859
  ?>
860
  infoWindow.setOptions({maxWidth:<?php echo $wpgmza_settings_infowindow_width; ?>});
861
 
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.3
7
  Author: WP Google Maps
8
  Author URI: http://www.wpgmaps.com
9
  */
10
 
11
  /*
12
+ * 6.0.3
13
+ * Small bug fix
14
+ *
15
+ * 6.0.2
16
+ * Small bug fuix
17
+ *
18
+ * 6.0.1
19
+ * Small bug fix with styling
20
  *
21
  * 6.0.0
22
  * Fixed a width bug with the datatables layout. Now falls in line with the map width.
61
  $wpgmza_tblname_polylines = $wpdb->prefix . "wpgmza_polylines";
62
  $wpgmza_tblname_categories = $wpdb->prefix. "wpgmza_categories";
63
  $wpgmza_tblname_category_maps = $wpdb->prefix. "wpgmza_category_maps";
64
+ $wpgmza_version = "6.0.3";
65
+ $wpgmza_p_version = "6.0.3";
66
  $wpgmza_t = "basic";
67
  define("WPGMAPS", $wpgmza_version);
68
  define("WPGMAPS_DIR",plugin_dir_url(__FILE__));
862
  var infoWindow = new google.maps.InfoWindow();
863
  <?php
864
  $wpgmza_settings = get_option("WPGMZA_OTHER_SETTINGS");
865
+ $wpgmza_settings_infowindow_width = "250";
866
+ if (isset($wpgmza_settings['wpgmza_settings_infowindow_width'])) { $wpgmza_settings_infowindow_width = $wpgmza_settings['wpgmza_settings_infowindow_width']; }
867
+ if (!isset($wpgmza_settings_infowindow_width)) { $wpgmza_settings_infowindow_width = "250"; }
868
  ?>
869
  infoWindow.setOptions({maxWidth:<?php echo $wpgmza_settings_infowindow_width; ?>});
870