diff options
Diffstat (limited to 'framework')
-rw-r--r-- | framework/Security/TAuthorizationRule.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Security/TAuthorizationRule.php b/framework/Security/TAuthorizationRule.php index bdc0e902..d16ad93b 100644 --- a/framework/Security/TAuthorizationRule.php +++ b/framework/Security/TAuthorizationRule.php @@ -223,7 +223,7 @@ class TAuthorizationRule extends TComponent private function isUserMatched($user)
{
- return ($this->_everyone || ($this->_guest && $user->getIsGuest()) || ($this->_authenticated && !$user->getIsGuest()));
+ return ($this->_everyone || ($this->_guest && $user->getIsGuest()) || ($this->_authenticated && !$user->getIsGuest()) || in_array(strtolower($user->getName()),$this->_users));
}
private function isRoleMatched($user)
|