Version Description
- Small bug fix
Download this release
Release Info
Developer | WPGMaps |
Plugin | WP Google Maps |
Version | 5.10 |
Comparing to | |
See all releases |
Code changes from version 5.09 to 5.10
- images/New1.JPG +0 -0
- images/New2.JPG +0 -0
- readme.txt +3 -0
- wpGoogleMaps.php +6 -9
images/New1.JPG
CHANGED
Binary file
|
images/New2.JPG
CHANGED
Binary file
|
readme.txt
CHANGED
@@ -82,6 +82,9 @@ Previous versions may cause your blog to slow down. Upgrading to 4.5 will get ri
|
|
82 |
|
83 |
== Changelog ==
|
84 |
|
|
|
|
|
|
|
85 |
= 5.09 =
|
86 |
* Map markers can now be sorted by id,title,description or address
|
87 |
* Add Polylines to your map with the Pro version
|
82 |
|
83 |
== Changelog ==
|
84 |
|
85 |
+
= 5.10 =
|
86 |
+
* Small bug fix
|
87 |
+
|
88 |
= 5.09 =
|
89 |
* Map markers can now be sorted by id,title,description or address
|
90 |
* Add Polylines to your map with the Pro version
|
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.
|
7 |
Author: WP Google Maps
|
8 |
Author URI: http://www.wpgmaps.com
|
9 |
*/
|
@@ -33,8 +33,8 @@ $wpgmza_tblname = $wpdb->prefix . "wpgmza";
|
|
33 |
$wpgmza_tblname_maps = $wpdb->prefix . "wpgmza_maps";
|
34 |
$wpgmza_tblname_poly = $wpdb->prefix . "wpgmza_polygon";
|
35 |
$wpgmza_tblname_polylines = $wpdb->prefix . "wpgmza_polylines";
|
36 |
-
$wpgmza_version = "5.
|
37 |
-
$wpgmza_p_version = "5.
|
38 |
$wpgmza_t = "basic";
|
39 |
|
40 |
add_action('admin_head', 'wpgmaps_head');
|
@@ -1997,7 +1997,7 @@ function wpgmza_basic_menu() {
|
|
1997 |
<h2 style=\"padding-top:0; margin-top:0;\">".__("Add a Polygon","wp-google-maps")."</h2>
|
1998 |
<table>
|
1999 |
<tr>
|
2000 |
-
<td><img src=\"".wpgmaps_get_plugin_url()."/images/New2.
|
2001 |
<td valign=\"middle\"><span style=\"font-size:18px; color:#666;\">".__("Add Polygons to your maps for only","wp-google-maps")." <strong>$14.99</strong>. ".__("Click","wp-google-maps")." <a href=\"http://www.wpgmaps.com/purchase-professional-version/?utm_source=plugin&utm_medium=link&utm_campaign=polygon\" title=\"Pro Edition\" target=\"_BLANK\">".__("here","wp-google-maps")."</a></span></td>
|
2002 |
</tr>
|
2003 |
</table>
|
@@ -2006,7 +2006,7 @@ function wpgmza_basic_menu() {
|
|
2006 |
<h2 style=\"padding-top:0; margin-top:0;\">".__("Add a Polyline","wp-google-maps")."</h2>
|
2007 |
<table>
|
2008 |
<tr>
|
2009 |
-
<td><img src=\"".wpgmaps_get_plugin_url()."/images/New1.
|
2010 |
<td valign=\"middle\"><span style=\"font-size:18px; color:#666;\">".__("Add Polyline and routes to your maps for only","wp-google-maps")." <strong>$14.99</strong>. ".__("Click","wp-google-maps")." <a href=\"http://www.wpgmaps.com/purchase-professional-version/?utm_source=plugin&utm_medium=link&utm_campaign=polyline\" title=\"Pro Edition\" target=\"_BLANK\">".__("here","wp-google-maps")."</a></span></td>
|
2011 |
</tr>
|
2012 |
</table>
|
@@ -2460,7 +2460,6 @@ function wpgmaps_handle_db() {
|
|
2460 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
|
2461 |
";
|
2462 |
|
2463 |
-
require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
|
2464 |
dbDelta($sql);
|
2465 |
|
2466 |
|
@@ -2470,13 +2469,12 @@ function wpgmaps_handle_db() {
|
|
2470 |
`map_id` int(11) NOT NULL,
|
2471 |
`polydata` LONGTEXT NOT NULL,
|
2472 |
`linecolor` VARCHAR(7) NOT NULL,
|
2473 |
-
`linethickness` VARCHAR(
|
2474 |
`opacity` VARCHAR(3) NOT NULL,
|
2475 |
PRIMARY KEY (`id`)
|
2476 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
|
2477 |
";
|
2478 |
|
2479 |
-
require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
|
2480 |
dbDelta($sql);
|
2481 |
|
2482 |
|
@@ -2518,7 +2516,6 @@ function wpgmaps_handle_db() {
|
|
2518 |
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
|
2519 |
";
|
2520 |
|
2521 |
-
require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
|
2522 |
dbDelta($sql);
|
2523 |
|
2524 |
|
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.10
|
7 |
Author: WP Google Maps
|
8 |
Author URI: http://www.wpgmaps.com
|
9 |
*/
|
33 |
$wpgmza_tblname_maps = $wpdb->prefix . "wpgmza_maps";
|
34 |
$wpgmza_tblname_poly = $wpdb->prefix . "wpgmza_polygon";
|
35 |
$wpgmza_tblname_polylines = $wpdb->prefix . "wpgmza_polylines";
|
36 |
+
$wpgmza_version = "5.10";
|
37 |
+
$wpgmza_p_version = "5.10";
|
38 |
$wpgmza_t = "basic";
|
39 |
|
40 |
add_action('admin_head', 'wpgmaps_head');
|
1997 |
<h2 style=\"padding-top:0; margin-top:0;\">".__("Add a Polygon","wp-google-maps")."</h2>
|
1998 |
<table>
|
1999 |
<tr>
|
2000 |
+
<td><img src=\"".wpgmaps_get_plugin_url()."/images/New2.JPG\" width=\"260\" style=\"border:3px solid #808080;\" title=\"".__("Add detailed information to your markers!")."\" alt=\"".__("Add custom markers to your map!","wp-google-maps")."\" /><br /><br /></td>
|
2001 |
<td valign=\"middle\"><span style=\"font-size:18px; color:#666;\">".__("Add Polygons to your maps for only","wp-google-maps")." <strong>$14.99</strong>. ".__("Click","wp-google-maps")." <a href=\"http://www.wpgmaps.com/purchase-professional-version/?utm_source=plugin&utm_medium=link&utm_campaign=polygon\" title=\"Pro Edition\" target=\"_BLANK\">".__("here","wp-google-maps")."</a></span></td>
|
2002 |
</tr>
|
2003 |
</table>
|
2006 |
<h2 style=\"padding-top:0; margin-top:0;\">".__("Add a Polyline","wp-google-maps")."</h2>
|
2007 |
<table>
|
2008 |
<tr>
|
2009 |
+
<td><img src=\"".wpgmaps_get_plugin_url()."/images/New1.JPG\" width=\"260\" style=\"border:3px solid #808080;\" title=\"".__("Add detailed information to your markers!")."\" alt=\"".__("Add custom markers to your map!","wp-google-maps")."\" /><br /><br /></td>
|
2010 |
<td valign=\"middle\"><span style=\"font-size:18px; color:#666;\">".__("Add Polyline and routes to your maps for only","wp-google-maps")." <strong>$14.99</strong>. ".__("Click","wp-google-maps")." <a href=\"http://www.wpgmaps.com/purchase-professional-version/?utm_source=plugin&utm_medium=link&utm_campaign=polyline\" title=\"Pro Edition\" target=\"_BLANK\">".__("here","wp-google-maps")."</a></span></td>
|
2011 |
</tr>
|
2012 |
</table>
|
2460 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
|
2461 |
";
|
2462 |
|
|
|
2463 |
dbDelta($sql);
|
2464 |
|
2465 |
|
2469 |
`map_id` int(11) NOT NULL,
|
2470 |
`polydata` LONGTEXT NOT NULL,
|
2471 |
`linecolor` VARCHAR(7) NOT NULL,
|
2472 |
+
`linethickness` VARCHAR(3) NOT NULL,
|
2473 |
`opacity` VARCHAR(3) NOT NULL,
|
2474 |
PRIMARY KEY (`id`)
|
2475 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
|
2476 |
";
|
2477 |
|
|
|
2478 |
dbDelta($sql);
|
2479 |
|
2480 |
|
2516 |
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
|
2517 |
";
|
2518 |
|
|
|
2519 |
dbDelta($sql);
|
2520 |
|
2521 |
|