X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/b8b87716db4858bbe35dbe5948d8b97b1c9e12d4..141b32f4192819579adbc1388a90ba92d47485e6:/lib/cmd.php diff --git a/lib/cmd.php b/lib/cmd.php index 88189206..9ec290d1 100644 --- a/lib/cmd.php +++ b/lib/cmd.php @@ -200,9 +200,10 @@ 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)) {