More fixes (javascript errors in Google Map on search)
xml/marker_listing.php, line 17
is
} elseif (isset($_GET['search'])) {
changed to
} elseif (isset($_GET['search']) && $_GET['search']!='') {
hooks.php, lines 220-222
are
if (isset($GMapSLat)) { $GMapLat = $GMapSLat; }
if (isset($GMapSLong)) { $GMapLong = $GMapSLong; }
if (isset($GMapSZoom)) { $GMapZoom = $GMapSZoom; }
changed to
if (isset($GMapSLat) && ($GMapSLat!='S')) { $GMapLat = $GMapSLat; }
if (isset($GMapSLong) && ($GMapSLong!='S')) { $GMapLong = $GMapSLong; }
if (isset($GMapSZoom) && ($GMapSZoom!='S')) { $GMapZoom = $GMapSZoom; }