diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-05-17 12:37:49 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-05-17 12:37:49 -0400 |
commit | 24ee48e6d58db92a23e24e87b1b53f012e456cfa (patch) | |
tree | 9b168a1c6bf37b9753b722bde4a95ccba64b0e38 /lib/action.php | |
parent | 481dfb47a41002cdad11763235ae11fb56399a74 (diff) |
try to fix arghandling in action
darcs-hash:20080517163749-84dde-a323b2b956a0912c5dc2cb93a83714dad64064a0.gz
Diffstat (limited to 'lib/action.php')
-rw-r--r-- | lib/action.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/action.php b/lib/action.php index c882f0696..e604b1304 100644 --- a/lib/action.php +++ b/lib/action.php @@ -34,9 +34,9 @@ class Action { // lawsuit } } - function handle($args) { + function handle($argarray) { $this->args = array(); - foreach ($args as $k => $v) { + foreach ($argarray as $k => $v) { $this->args[$k] = $v; } } |