From ef2b4fc1e6423260f8acedb81563c4b445316da2 Mon Sep 17 00:00:00 2001 From: conradverm Date: Tue, 13 Feb 2007 10:45:45 +0000 Subject: [PATCH] KTS-1687 "Double quote to single quote conversion" Fixed. Reviewed by: Kevin Fourie --- 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 7f06f8a..924cbb4 100644 --- a/lib/actions/actionregistry.inc.php +++ b/lib/actions/actionregistry.inc.php @@ -35,7 +35,7 @@ class KTActionRegistry { } // }}} - function registerAction($slot, $name, $nsname, $path = "", $sPlugin = null) { + function registerAction($slot, $name, $nsname, $path = '', $sPlugin = null) { $this->actions[$slot] = KTUtil::arrayGet($this->actions, $slot, array()); $this->actions[$slot][$nsname] = array($name, $path, $nsname, $sPlugin); $this->nsnames[$nsname] = array($name, $path, $nsname, $sPlugin); -- libgit2 0.21.4