diff options
Diffstat (limited to 'lib/action.php')
-rw-r--r-- | lib/action.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/action.php b/lib/action.php index f8442a1f0..c882f0696 100644 --- a/lib/action.php +++ b/lib/action.php @@ -35,6 +35,9 @@ class Action { // lawsuit } function handle($args) { - $this->args = copy($argarray); + $this->args = array(); + foreach ($args as $k => $v) { + $this->args[$k] = $v; + } } } |