]> git.openstreetmap.org Git - nominatim.git/commitdiff
Revert "code beauty improvements"
authorThomasBarris <thomas.barris@googlemail.com>
Thu, 23 Aug 2018 06:07:08 +0000 (08:07 +0200)
committerThomasBarris <thomas.barris@googlemail.com>
Thu, 23 Aug 2018 06:07:08 +0000 (08:07 +0200)
This reverts commit ee3973f507d0090d493ace4e640a5bc98a62475c.

utils/setup.php
utils/setup_functions.php

index af9c938d0e74d87f85342bbb1b40eb5822a23d63..a5512de073d27621e4a47cc0ae90258585e3c000 100755 (executable)
@@ -66,7 +66,7 @@ if ($aCMDResult['import-data'] || $aCMDResult['all']) {
 
 if ($aCMDResult['create-functions'] || $aCMDResult['all']) {
     $bDidSomething = true;
-    create_functions($aCMDResult);
+    create_functions ($aCMDResult);
 }
 
 if ($aCMDResult['create-tables'] || $aCMDResult['all']) {
@@ -131,3 +131,5 @@ if ($aCMDResult['drop']) {
 }
 
 didsomething($bDidSomething);
+
+
index b257ef17eaa674a601eb64a98753f4826094bba4..2284de30acd262db5d4245176ffcd5124bb84b8a 100755 (executable)
@@ -133,7 +133,7 @@ function prepDB($aCMDResult)
         pgsqlRunScriptFile(CONST_BasePath.'/data/gb_postcode_table.sql');
 
 
-        if (file_exists(CONST_BasePath.'/data/gb_postcode_data.sql.gz')) {
+           if (file_exists(CONST_BasePath.'/data/gb_postcode_data.sql.gz')) {
             pgsqlRunScriptFile(CONST_BasePath.'/data/gb_postcode_data.sql.gz');
         } else {
             warn('external UK postcode table not found.');
@@ -153,11 +153,11 @@ function prepDB($aCMDResult)
         // versions in create-tables.
         pgsqlRunScript('CREATE TABLE IF NOT EXISTS place_boundingbox ()');
         pgsqlRunScript('CREATE TYPE wikipedia_article_match AS ()', false);
-    }
-    return $aDSNInfo;
+    }  
+    return $aDSNInfo;      
 }
 
-function import_data($aCMDResult, $iCacheMemory, $aDSNInfo)
+function import_data($aCMDResult, $iCacheMemory,$aDSNInfo)
 {
     info('Import data');
 
@@ -929,3 +929,5 @@ function checkModulePresence()
 
     return $bResult;
 }
+
+?>