Commit 187045842249ad495d0dd17d60b69061e5456dce
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
Showing
1 changed file
with
1 additions
and
1 deletions
lib/actions/documentaction.inc.php
| @@ -222,7 +222,7 @@ class KTDocumentActionUtil { | @@ -222,7 +222,7 @@ class KTDocumentActionUtil { | ||
| 222 | if (!empty($sPath)) { | 222 | if (!empty($sPath)) { |
| 223 | require_once($sPath); | 223 | require_once($sPath); |
| 224 | } | 224 | } |
| 225 | - $aObjects[] =& new $sClassName(&$oDocument, $oUser, $oPlugin); | 225 | + $aObjects[] =& new $sClassName($oDocument, $oUser, $oPlugin); |
| 226 | } | 226 | } |
| 227 | return $aObjects; | 227 | return $aObjects; |
| 228 | } | 228 | } |