X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/3505417e3f4f027ae554a2f1ffdb7a8796d58f91..7cc8f631251b927d57f4ca19a792386cd274e504:/lib/Geocode.php diff --git a/lib/Geocode.php b/lib/Geocode.php index d5647c76..26fafb73 100644 --- a/lib/Geocode.php +++ b/lib/Geocode.php @@ -921,12 +921,12 @@ class Geocode $aResult['importance'] = 0.001; $aResult['foundorder'] = $aResult['addressimportance']; } else { - // Adjust importance for the number of exact string matches in the result + $aResult['importance'] = max(0.001, $aResult['importance']); $aResult['importance'] *= $this->viewboxImportanceFactor( $aResult['lon'], $aResult['lat'] ); - $aResult['importance'] = max(0.001, $aResult['importance']); + // Adjust importance for the number of exact string matches in the result $iCountWords = 0; $sAddress = $aResult['langaddress']; foreach ($aRecheckWords as $i => $sWord) {