Quote:
Originally Posted by Falcon Capt
Ok, got it fixed!
in vbgooglemapme.php find:
Code:
if ( isset($HTTP_GET_VARS["lng"]) && !empty($HTTP_GET_VARS["lng"]) && isset($HTTP_GET_VARS["lat"]) && !empty($HTTP_GET_VARS["lat"]) )
{
$dlng = $HTTP_GET_VARS["lng"];
$dlat = $HTTP_GET_VARS["lat"];
}
if (isset($HTTP_GET_VARS["zoom"]) && !empty($HTTP_GET_VARS["zoom"])) {
$zoomlevel = $HTTP_GET_VARS["zoom"];
}
and change it to:
Code:
if ( isset($_GET["lng"]) && !empty($_GET["lng"]) && isset($_GET["lat"]) && !empty($_GET["lat"]) )
{
$dlng = $_GET["lng"];
$dlat = $_GET["lat"];
}
if (isset($_GET["zoom"]) && !empty($_GET["zoom"])) {
$zoomlevel = $_GET["zoom"];
}
Hope this helps! 
|
I am ever so grateful for this patch, good work. I would like to add to the record that in addition to the version upgrade of this mod, I did also do a server switch recently as well. As you experienced as well, I guess it may have been my server switch that caused this to stop working, not necessarily the version upgrade as I initially thought.
Good work once again Falcon Capt, bravo!