X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/e286536959144de9ab18abf7dce7a58e630b3bbc..af833ff042339ad6da3d5da0a0343f150b4c1998:/utils/query.php diff --git a/utils/query.php b/utils/query.php old mode 100755 new mode 100644 index e3e2e7b8..f8047ffc --- a/utils/query.php +++ b/utils/query.php @@ -1,7 +1,5 @@ -#!@PHP_BIN@ -Cq connect(); + $oParams = new Nominatim\ParameterParser($aCMDResult); if ($oParams->getBool('search')) { @@ -41,11 +41,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); }