From 24ee48e6d58db92a23e24e87b1b53f012e456cfa Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 17 May 2008 12:37:49 -0400 Subject: try to fix arghandling in action darcs-hash:20080517163749-84dde-a323b2b956a0912c5dc2cb93a83714dad64064a0.gz --- lib/action.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') 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; } } -- cgit v1.2.3-54-g00ecf