]> git.openstreetmap.org Git - nominatim.git/commitdiff
Merge pull request #2325 from lonvia/do-not-precompute-postcodes
authorSarah Hoffmann <lonvia@denofr.de>
Thu, 13 May 2021 15:00:29 +0000 (17:00 +0200)
committerGitHub <noreply@github.com>
Thu, 13 May 2021 15:00:29 +0000 (17:00 +0200)
Do not preload postcodes in the legacy tokenizer

lib-php/lib.php

index a1f528fa89995cd8de9af08cf9a0e658694cd3c8..8d82c5b32def09bc7a48bc45e0030898454855f6 100644 (file)
@@ -227,3 +227,10 @@ function closestHouseNumber($aRow)
 
     return max(min($aRow['endnumber'], $iHn), $aRow['startnumber']);
 }
+
+if (!function_exists('array_key_last')) {
+    function array_key_last(array $array)
+    {
+        if (!empty($array)) return key(array_slice($array, -1, 1, true));
+    }
+}