From 01625abcc44e715dcf9f93995fb5014da85c7930 Mon Sep 17 00:00:00 2001 From: muskie9 Date: Wed, 3 Aug 2016 19:39:08 -0500 Subject: [PATCH] BUGFIX incorrect chrome detection --- code/pages/Locator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/pages/Locator.php b/code/pages/Locator.php index 998b2a2..b5580c3 100644 --- a/code/pages/Locator.php +++ b/code/pages/Locator.php @@ -224,7 +224,7 @@ public function init() // map config based on user input in Settings tab // AutoGeocode or Full Map if ($this->data()->AutoGeocode) { - $load = $featuredInList || $defaultCoords || $isChrome != '' + $load = $featuredInList || $defaultCoords != '' || $isChrome ? 'autoGeocode: false, fullMapStart: true, storeLimit: 1000, maxDistance: true,' : 'autoGeocode: true, fullMapStart: false,'; } else {