minor proc_run issues encountered during mass directory update.

Unclear if it affects "normal" operation but suspect it does.
This commit is contained in:
Friendika 2011-02-23 03:03:33 -08:00
parent 365ff94137
commit b6ba303f4b
1 changed files with 3 additions and 3 deletions

View File

@ -2430,13 +2430,13 @@ function prepare_body($item) {
* $cmd and string args are surrounded with "" * $cmd and string args are surrounded with ""
*/ */
if(! function_exists('run_proc')) { if(! function_exists('proc_run')) {
function proc_run($cmd){ function proc_run($cmd){
$args = func_get_args(); $args = func_get_args();
call_hooks("proc_run", $args); call_hooks("proc_run", $args);
foreach ($args as &$arg){ foreach ($args as $arg){
if(is_string($arg)) $arg='"'.$arg.'"'; $arg = escapeshellarg($arg);
} }
$cmdline = implode($args," "); $cmdline = implode($args," ");
proc_close(proc_open($cmdline." &",array(),$foo)); proc_close(proc_open($cmdline." &",array(),$foo));