From d4a3425b7ec52b97a2653851451abec497b91c8e Mon Sep 17 00:00:00 2001 From: Neil Blakey-Milner Date: Wed, 5 Oct 2005 12:16:05 +0000 Subject: [PATCH] Save the nsname of the action. --- lib/actions/actionregistry.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/actions/actionregistry.inc.php b/lib/actions/actionregistry.inc.php index c13c6d9..2ea9bea 100644 --- a/lib/actions/actionregistry.inc.php +++ b/lib/actions/actionregistry.inc.php @@ -13,7 +13,7 @@ class KTActionRegistry { function registerAction($slot, $name, $nsname, $path = "") { $this->actions[$slot] = KTUtil::arrayGet($this->actions, $slot, array()); - $this->actions[$slot][$nsname] = array($name, $path); + $this->actions[$slot][$nsname] = array($name, $path, $nsname); } function getActions($slot) { -- libgit2 0.21.4