diff --git a/lib/action.php b/lib/action.php index f8442a1f02..c882f0696e 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; + } } }