]> git.openstreetmap.org Git - nominatim.git/blobdiff - lib/cmd.php
Merge branch 'customPHP1' of https://github.com/ThomasBarris/Nominatim into ThomasBar...
[nominatim.git] / lib / cmd.php
index 88189206ad6cc42c050e1dc094e255bd39a306c8..9efe5653b735ca45dd12a62da471d824436dc4ee 100644 (file)
@@ -200,9 +200,11 @@ function runSQLScript($sScript, $bfatal = true, $bVerbose = false, $bIgnoreError
 
 function runWithEnv($sCmd, $aEnv)
 {
-    $aFDs = array(0 => array('pipe', 'r'),
-                  1 => STDOUT,
-                  2 => STDERR);
+    $aFDs = array(
+             0 => array('pipe', 'r'),
+             1 => STDOUT,
+             2 => STDERR
+            );
     $aPipes = null;
     $hProc = @proc_open($sCmd, $aFDs, $aPipes, null, $aEnv);
     if (!is_resource($hProc)) {