X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/63dc503b8d86f040e80c24a6cf65f5275dc33221..5d32ac9ac918929c11602a740c3033bcfdb0f929:/lib-php/website/search.php?ds=sidebyside diff --git a/lib-php/website/search.php b/lib-php/website/search.php index 6b271f0b..e553ef39 100644 --- a/lib-php/website/search.php +++ b/lib-php/website/search.php @@ -54,7 +54,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)); @@ -77,7 +82,9 @@ if (isset($_SERVER['REQUEST_SCHEME']) $sMoreURL = '/search.php?'.http_build_query($aMoreParams); } -if (CONST_Debug) exit; +if (CONST_Debug) { + exit; +} $sOutputTemplate = ($sOutputFormat == 'jsonv2') ? 'json' : $sOutputFormat; include(CONST_LibDir.'/template/search-'.$sOutputTemplate.'.php');