mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 12:28:52 +00:00
grmbl
git-svn-id: file:///svn/phpbb/trunk@7154 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
ed7d92753e
commit
6fa7bec4ed
1 changed files with 2 additions and 2 deletions
|
@ -372,11 +372,11 @@ switch ($mode)
|
|||
// Normal users are able to see at least users having only changed their profile settings but not yet re-activated.
|
||||
if (!$auth->acl_get('a_user') && $user->data['user_type'] != USER_FOUNDER)
|
||||
{
|
||||
if ($row['user_type'] == USER_IGNORE)
|
||||
if ($member['user_type'] == USER_IGNORE)
|
||||
{
|
||||
trigger_error('NO_USER');
|
||||
}
|
||||
else if ($row['user_type'] == USER_INACTIVE && $row['user_inactive_reason'] != INACTIVE_PROFILE)
|
||||
else if ($member['user_type'] == USER_INACTIVE && $member['user_inactive_reason'] != INACTIVE_PROFILE)
|
||||
{
|
||||
trigger_error('NO_USER');
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue