WP Google Maps - Version 6.0.31

Version Description

2014-11-28 Low priority = * Fixed a category bug

Download this release

Release Info

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

Code changes from version 6.0.30 to 6.0.31

cache/timthumb_cacheLastCleanTime.touch ADDED
File without changes
cache/timthumb_int_9ac739337b2808539e4c999240e013e5.timthumb.txt ADDED
Binary file
readme.txt CHANGED
@@ -153,6 +153,9 @@ Please upgrade your version of WP Google Maps to version 6.0.27 as it includes m
153
 
154
  == Changelog ==
155
 
 
 
 
156
  = 6.0.30 2014-11-26 =
157
  * Added a check for the DOMDocument class when creating the map marker data files
158
  * Removed the APC Object Cache warning
@@ -346,4 +349,4 @@ Please upgrade your version of WP Google Maps to version 6.0.27 as it includes m
346
  * Added SSL bug fixes
347
  * Fixed a bug that wasnt allowing users to edit the exact location
348
 
349
- For more, please view the WP Google Maps website
153
 
154
  == Changelog ==
155
 
156
+ = 6.0.31 2014-11-28 Low priority =
157
+ * Fixed a category bug
158
+
159
  = 6.0.30 2014-11-26 =
160
  * Added a check for the DOMDocument class when creating the map marker data files
161
  * Removed the APC Object Cache warning
349
  * Added SSL bug fixes
350
  * Fixed a bug that wasnt allowing users to edit the exact location
351
 
352
+ For more, please view the WP Google Maps website.
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.30
7
  Author: WP Google Maps
8
  Author URI: http://www.wpgmaps.com
9
  */
10
 
11
- /* 6.0.30
 
 
 
12
  * Added a check for the DOMDocument class
13
  * Removed the APC Object Cache warning
14
  * Added new strings to the PO file
@@ -106,8 +109,8 @@ $wpgmza_tblname_poly = $wpdb->prefix . "wpgmza_polygon";
106
  $wpgmza_tblname_polylines = $wpdb->prefix . "wpgmza_polylines";
107
  $wpgmza_tblname_categories = $wpdb->prefix. "wpgmza_categories";
108
  $wpgmza_tblname_category_maps = $wpdb->prefix. "wpgmza_category_maps";
109
- $wpgmza_version = "6.0.30";
110
- $wpgmza_p_version = "6.0.30";
111
  $wpgmza_t = "basic";
112
  define("WPGMAPS", $wpgmza_version);
113
  define("WPGMAPS_DIR",plugin_dir_url(__FILE__));
@@ -1821,15 +1824,18 @@ function wpgmaps_update_xml_file($mapid = false) {
1821
  $anim = $result->anim;
1822
  $retina = $result->retina;
1823
  $category = $result->category;
1824
- if (function_exists('wpgmza_get_category_data')) {
1825
- $category_data = wpgmza_get_category_data($category);
1826
- if (isset($category_data->category_icon) && isset($category_data->category_icon) != "") {
1827
- $icon = $category_data->category_icon;
1828
- } else {
1829
- $icons = "";
1830
- }
1831
- if (isset($category_data->retina)) {
1832
- $retina = $category_data->retina;
 
 
 
1833
  }
1834
  }
1835
  $infoopen = $result->infoopen;
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.31
7
  Author: WP Google Maps
8
  Author URI: http://www.wpgmaps.com
9
  */
10
 
11
+ /* 6.0.31
12
+ * Category bug fix
13
+ *
14
+ * 6.0.30
15
  * Added a check for the DOMDocument class
16
  * Removed the APC Object Cache warning
17
  * Added new strings to the PO file
109
  $wpgmza_tblname_polylines = $wpdb->prefix . "wpgmza_polylines";
110
  $wpgmza_tblname_categories = $wpdb->prefix. "wpgmza_categories";
111
  $wpgmza_tblname_category_maps = $wpdb->prefix. "wpgmza_category_maps";
112
+ $wpgmza_version = "6.0.31";
113
+ $wpgmza_p_version = "6.0.31";
114
  $wpgmza_t = "basic";
115
  define("WPGMAPS", $wpgmza_version);
116
  define("WPGMAPS_DIR",plugin_dir_url(__FILE__));
1824
  $anim = $result->anim;
1825
  $retina = $result->retina;
1826
  $category = $result->category;
1827
+
1828
+ if ($icon == "") {
1829
+ if (function_exists('wpgmza_get_category_data')) {
1830
+ $category_data = wpgmza_get_category_data($category);
1831
+ if (isset($category_data->category_icon) && isset($category_data->category_icon) != "") {
1832
+ $icon = $category_data->category_icon;
1833
+ } else {
1834
+ $icon = "";
1835
+ }
1836
+ if (isset($category_data->retina)) {
1837
+ $retina = $category_data->retina;
1838
+ }
1839
  }
1840
  }
1841
  $infoopen = $result->infoopen;