X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/c3788d765ed4e7ddf00794085af757714bc102cf..9be227f436cc2d38f9614ecceb67ead18103fd2d:/lib-php/website/search.php diff --git a/lib-php/website/search.php b/lib-php/website/search.php index e8f23983..e1aab794 100644 --- a/lib-php/website/search.php +++ b/lib-php/website/search.php @@ -62,7 +62,12 @@ if (!$oGeocode->getQueryString() $hLog = logStart($oDB, 'search', $oGeocode->getQueryString(), $aLangPrefOrder); -$aSearchResults = $oGeocode->lookup(); +// Ignore requests from a faulty app. +if ($oGeocode->getQueryString() === '-1,-1') { + $aSearchResults = array(); +} else { + $aSearchResults = $oGeocode->lookup(); +} logEnd($oDB, $hLog, count($aSearchResults));