X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/fcd3a42bf73242661910cb9b2f1d17b5f6ac5332..7c6a88295f8d33688c5a178fd5e6b317b000d91f:/website/reverse.php?ds=inline diff --git a/website/reverse.php b/website/reverse.php index b050484d..ed7090e2 100755 --- a/website/reverse.php +++ b/website/reverse.php @@ -120,8 +120,7 @@ $iPlaceID = $aPlace['place_id']; if (PEAR::IsError($iPlaceID)) { - var_Dump($sSQL, $iPlaceID); - exit; + failInternalError("Could not determine closest place.", $sSQL, $iPlaceID); } } @@ -133,8 +132,7 @@ $iPlaceID = $oDB->getOne($sSQL); if (PEAR::IsError($iPlaceID)) { - var_Dump($sSQL, $iPlaceID); - exit; + failInternalError("Could not get parent for place.", $sSQL, $iPlaceID); } if ($iPlaceID && $aPlace['place_id'] && $iMaxRank < 28) @@ -144,8 +142,7 @@ $iPlaceID = $oDB->getOne($sSQL); if (PEAR::IsError($iPlaceID)) { - var_Dump($sSQL, $iPlaceID); - exit; + failInternalError("Could not get larger parent for place.", $sSQL, $iPlaceID); } } if (!$iPlaceID)