]> git.openstreetmap.org Git - nominatim.git/blobdiff - lib-php/setup_functions.php
Merge remote-tracking branch 'upstream/master'
[nominatim.git] / lib-php / setup_functions.php
index c89db534c2e41cca9f0c82bf4640cb268b2f407e..179b0159a85b43cb2c58c72145b9f124185fa54e 100755 (executable)
@@ -1,20 +1,5 @@
 <?php
 
-function checkInFile($sOSMFile)
-{
-    if (!isset($sOSMFile)) {
-        fail('missing --osm-file for data import');
-    }
-
-    if (!file_exists($sOSMFile)) {
-        fail('the path supplied to --osm-file does not exist');
-    }
-
-    if (!is_readable($sOSMFile)) {
-        fail('osm-file "' . $aCMDResult['osm-file'] . '" not readable');
-    }
-}
-
 function getOsm2pgsqlBinary()
 {
     $sBinary = getSetting('OSM2PGSQL_BINARY');