X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/f6e894a53af83a69f553555cb4a6248d57a58391..201b4689afaee3acfddd1fc7fe829fafc70667d6:/lib-php/Shell.php diff --git a/lib-php/Shell.php b/lib-php/Shell.php index 52a7d8fb..4be13235 100644 --- a/lib-php/Shell.php +++ b/lib-php/Shell.php @@ -1,4 +1,12 @@ aEnv)) $this->aEnv = $_ENV; + if (!isset($this->aEnv)) { + $this->aEnv = $_ENV; + } $this->aEnv = array_merge($this->aEnv, array($sKey => $sVal), $_ENV); } return $this; @@ -48,7 +58,7 @@ class Shell return join(' ', $aEscaped); } - public function run($bExitOnFail = False) + public function run($bExitOnFail = false) { $sCmd = $this->escapedCmd(); // $aEnv does not need escaping, proc_open seems to handle it fine @@ -75,11 +85,8 @@ class Shell return $iStat; } - - private function escapeParam($sParam) { - if (preg_match('/^-*\w+$/', $sParam)) return $sParam; - return escapeshellarg($sParam); + return (preg_match('/^-*\w+$/', $sParam)) ? $sParam : escapeshellarg($sParam); } }