fixup argument handling in action superclass

darcs-hash:20080517162305-84dde-92b12e54f367528cc0d8454c14ca2f1616eeb8e4.gz
This commit is contained in:
Evan Prodromou 2008-05-17 12:23:05 -04:00
parent 669f494922
commit a5b660a468
1 changed files with 4 additions and 1 deletions

View File

@ -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;
}
}
}