]> git.openstreetmap.org Git - nominatim.git/blobdiff - lib-php/website/search.php
Merge remote-tracking branch 'upstream/master'
[nominatim.git] / lib-php / website / search.php
index b3a0fe83a32c5c89ca1e354abe4411d8260199d2..e553ef39a3a5616419169e89e5a9085d8c947252 100644 (file)
@@ -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));