]> git.openstreetmap.org Git - nominatim.git/blobdiff - utils/country_languages.php
disregard special phrases that do not match fully
[nominatim.git] / utils / country_languages.php
index 8ecc0a5386b475cbf99294e29e3fdf99a2411b7c..5608247e8de231e34bf2d2d186b9fe00bf02e322 100755 (executable)
@@ -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";
         }
     }
 }