Commit ef2b4fc1e6423260f8acedb81563c4b445316da2

Authored by conradverm
1 parent e9ed3dc4

KTS-1687

"Double quote to single quote conversion"
Fixed.
Reviewed by: Kevin Fourie

git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@6223 c91229c3-7414-0410-bfa2-8a42b809f60b
lib/actions/actionregistry.inc.php
... ... @@ -35,7 +35,7 @@ class KTActionRegistry {
35 35 }
36 36 // }}}
37 37  
38   - function registerAction($slot, $name, $nsname, $path = "", $sPlugin = null) {
  38 + function registerAction($slot, $name, $nsname, $path = '', $sPlugin = null) {
39 39 $this->actions[$slot] = KTUtil::arrayGet($this->actions, $slot, array());
40 40 $this->actions[$slot][$nsname] = array($name, $path, $nsname, $sPlugin);
41 41 $this->nsnames[$nsname] = array($name, $path, $nsname, $sPlugin);
... ...