]> git.openstreetmap.org Git - nominatim.git/commitdiff
query.php - we no longer support PHP < 5.4
authormarc tobias <mtmail@gmx.net>
Sun, 24 Feb 2019 15:22:55 +0000 (16:22 +0100)
committermarc tobias <mtmail@gmx.net>
Sun, 24 Feb 2019 15:22:55 +0000 (16:22 +0100)
utils/query.php

index 16657dafd450129c83b9c736f734e4bf05631bfe..9694bbb95618f17641bda3f4f4cc81c24ab776c4 100644 (file)
@@ -39,11 +39,7 @@ if ($oParams->getBool('search')) {
 
     $aSearchResults = $oGeocode->lookup();
 
-    if (version_compare(phpversion(), '5.4.0', '<')) {
-        echo json_encode($aSearchResults);
-    } else {
-        echo json_encode($aSearchResults, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE)."\n";
-    }
+    echo json_encode($aSearchResults, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE)."\n";
 } else {
     showUsage($aCMDOptions, true);
 }