Index: branches/5.2.x/core/units/users/users_tag_processor.php =================================================================== diff -u -N -r15012 -r15137 --- branches/5.2.x/core/units/users/users_tag_processor.php (.../users_tag_processor.php) (revision 15012) +++ branches/5.2.x/core/units/users/users_tag_processor.php (.../users_tag_processor.php) (revision 15137) @@ -1,6 +1,6 @@ Application->recallObject($this->Prefix . '.email-to'); + $user = $this->Application->recallObject($this->Prefix . '.email-to'); /* @var $user UsersItem */ $code = $this->getCachedCode(); @@ -93,7 +93,7 @@ function TestCodeIsValid($params) { - $user_helper =& $this->Application->recallObject('UserHelper'); + $user_helper = $this->Application->recallObject('UserHelper'); /* @var $user_helper UserHelper */ $code_type = isset($params['code_type']) ? $params['code_type'] : 'forgot_password'; @@ -122,7 +122,7 @@ */ protected function RestoreEmail($params) { - $user_helper =& $this->Application->recallObject('UserHelper'); + $user_helper = $this->Application->recallObject('UserHelper'); /* @var $user_helper UserHelper */ $hash = $this->Application->GetVar('hash'); @@ -230,7 +230,7 @@ */ function HasPermission($params) { - $perm_helper =& $this->Application->recallObject('PermissionsHelper'); + $perm_helper = $this->Application->recallObject('PermissionsHelper'); /* @var $perm_helper kPermissionsHelper */ return $perm_helper->TagPermissionCheck($params); @@ -351,10 +351,10 @@ */ protected function _updateAndLogin($fields_hash) { - $user_helper =& $this->Application->recallObject('UserHelper'); + $user_helper = $this->Application->recallObject('UserHelper'); /* @var $user_helper UserHelper */ - $user =& $this->Application->recallObject($this->Prefix . '.activate', null, Array ('skip_autoload' => true)); + $user = $this->Application->recallObject($this->Prefix . '.activate', null, Array ('skip_autoload' => true)); /* @var $user UsersItem */