WP Google Maps - Version 5.06

Version Description

  • Updated the plugin to force the latest jQuery to be loaded.
Download this release

Release Info

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

Code changes from version 5.05 to 5.06

Files changed (2) hide show
  1. readme.txt +3 -0
  2. wpGoogleMaps.php +11 -4
readme.txt CHANGED
@@ -81,6 +81,9 @@ Previous versions may cause your blog to slow down. Upgrading to 4.5 will get ri
81
 
82
  == Changelog ==
83
 
 
 
 
84
  = 5.05 =
85
  * Czech localization added thanks to Pavel Riha
86
  * Extended localization added to the jQuery.dataTables thanks to Pavel Riha
81
 
82
  == Changelog ==
83
 
84
+ = 5.06 =
85
+ * Updated the plugin to force the latest jQuery to be loaded.
86
+
87
  = 5.05 =
88
  * Czech localization added thanks to Pavel Riha
89
  * Extended localization added to the jQuery.dataTables thanks to Pavel Riha
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.05
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 = "5.05";
32
- $wpgmza_p_version = "5.05";
33
  $wpgmza_t = "basic";
34
 
35
  add_action('admin_head', 'wpgmaps_head');
@@ -2142,4 +2142,11 @@ function wpgmaps_filter(&$array) {
2142
  $data = mysql_real_escape_string($value);
2143
  }
2144
  }
2145
- }
 
 
 
 
 
 
 
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.06
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 = "5.06";
32
+ $wpgmza_p_version = "5.06";
33
  $wpgmza_t = "basic";
34
 
35
  add_action('admin_head', 'wpgmaps_head');
2142
  $data = mysql_real_escape_string($value);
2143
  }
2144
  }
2145
+ }
2146
+
2147
+ function wpgmaps_load_jquery() {
2148
+ wp_deregister_script('jquery');
2149
+ wp_register_script('jquery', 'http://code.jquery.com/jquery-1.8.3.min.js', false, "1.8.3");
2150
+ wp_enqueue_script('jquery');
2151
+ }
2152
+ add_action('wp_enqueue_scripts', 'wpgmaps_load_jquery', 9999);