X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/38874233816367831c5c30cea0db16d48a3d7016..c7b903f4b0d900c9efbb2cb7a3dac153cf339367:/utils/country_languages.php diff --git a/utils/country_languages.php b/utils/country_languages.php index 8ecc0a53..5ca61184 100755 --- a/utils/country_languages.php +++ b/utils/country_languages.php @@ -9,7 +9,7 @@ ini_set('display_errors', 'stderr'); $aCMDOptions = array( - "Import country language data from osm wiki", + 'Import country language data from osm wiki', array('help', 'h', 0, 1, 0, 0, false, 'Show Help'), array('quiet', 'q', 0, 1, 0, 0, 'bool', 'Quiet output'), array('verbose', 'v', 0, 1, 0, 0, 'bool', 'Verbose output'), @@ -27,7 +27,7 @@ if (true) { foreach ($aLanguages as $i => $s) { $aLanguages[$i] = '"'.pg_escape_string($s).'"'; } - echo "UPDATE country_name set country_default_language_codes = '{".join(',',$aLanguages)."}' where country_code = '".pg_escape_string($aMatch[1])."';\n"; + echo "UPDATE country_name set country_default_language_codes = '{".join(',', $aLanguages)."}' where country_code = '".pg_escape_string($aMatch[1])."';\n"; } } }