Commit 187045842249ad495d0dd17d60b69061e5456dce

Authored by Neil Blakey-Milner
1 parent c6d94e62

KTS-1428/KTS-1425: Remove call-time pass-by-reference


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@6033 c91229c3-7414-0410-bfa2-8a42b809f60b
lib/actions/documentaction.inc.php
... ... @@ -222,7 +222,7 @@ class KTDocumentActionUtil {
222 222 if (!empty($sPath)) {
223 223 require_once($sPath);
224 224 }
225   - $aObjects[] =& new $sClassName(&$oDocument, $oUser, $oPlugin);
  225 + $aObjects[] =& new $sClassName($oDocument, $oUser, $oPlugin);
226 226 }
227 227 return $aObjects;
228 228 }
... ...