X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/832547f192904a9ec92e173c27a91e0874fcc757..414e6f089fc361ac22e28227be2d34a256226505:/utils/query.php diff --git a/utils/query.php b/utils/query.php old mode 100755 new mode 100644 index 06d7f13b..16657daf --- a/utils/query.php +++ b/utils/query.php @@ -1,39 +1,37 @@ -#!/usr/bin/php -Cq getBool('search')) -{ +if ($oParams->getBool('search')) { if (isset($aCMDResult['nodedupe'])) $aCMDResult['dedupe'] = 'false'; - $oGeocode = new Geocode($oDB); + $oGeocode = new Nominatim\Geocode($oDB); $oGeocode->setLanguagePreference($oParams->getPreferredLanguages(false)); $oGeocode->loadParamArray($oParams); @@ -41,12 +39,11 @@ if ($oParams->getBool('search')) $aSearchResults = $oGeocode->lookup(); - if (version_compare(phpversion(), "5.4.0", '<')) + if (version_compare(phpversion(), '5.4.0', '<')) { echo json_encode($aSearchResults); - else + } else { echo json_encode($aSearchResults, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE)."\n"; -} -else -{ + } +} else { showUsage($aCMDOptions, true); }