aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xboot.php9
1 files changed, 8 insertions, 1 deletions
diff --git a/boot.php b/boot.php
index 5d2f1d744..3ab5905ff 100755
--- a/boot.php
+++ b/boot.php
@@ -1829,7 +1829,14 @@ function proc_run(){
foreach($args as $arg) {
if(is_array($arg)) {
foreach($arg as $n) {
- $newargs[] = $n;
+ if(is_array($n)) {
+ foreach($n as $w) {
+ $newargs[] = $w;
+ }
+ }
+ else {
+ $newargs[] = $n;
+ }
}
}
else