diff options
author | Friendika <info@friendika.com> | 2011-02-23 03:03:33 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-02-23 03:03:33 -0800 |
commit | b6ba303f4b7649454bbee9a4f798f74b1f49c871 (patch) | |
tree | 9a112966dd426b43e2b211aea783698f76d4b9b7 | |
parent | 365ff94137166f63211b9632c204a05a5cee7035 (diff) | |
download | volse-hubzilla-b6ba303f4b7649454bbee9a4f798f74b1f49c871.tar.gz volse-hubzilla-b6ba303f4b7649454bbee9a4f798f74b1f49c871.tar.bz2 volse-hubzilla-b6ba303f4b7649454bbee9a4f798f74b1f49c871.zip |
minor proc_run issues encountered during mass directory update.
Unclear if it affects "normal" operation but suspect it does.
-rw-r--r-- | boot.php | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -2430,13 +2430,13 @@ function prepare_body($item) { * $cmd and string args are surrounded with "" */ -if(! function_exists('run_proc')) { +if(! function_exists('proc_run')) { function proc_run($cmd){ $args = func_get_args(); call_hooks("proc_run", $args); - foreach ($args as &$arg){ - if(is_string($arg)) $arg='"'.$arg.'"'; + foreach ($args as $arg){ + $arg = escapeshellarg($arg); } $cmdline = implode($args," "); proc_close(proc_open($cmdline." &",array(),$foo)); |