mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-29 14:48:53 +00:00
Was certainly one problem with it ...
git-svn-id: file:///svn/phpbb/trunk@3951 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
51b0a56996
commit
fc2ecf2de9
1 changed files with 1 additions and 1 deletions
|
@ -648,7 +648,7 @@ class auth
|
|||
|
||||
while ($row = $db->sql_fetchrow($result))
|
||||
{
|
||||
if (isset($this->acl[$row['forum_id']][$row['auth_option']]) && $this->acl[$row['forum_id']][$row['auth_option']] !== ACL_NO)
|
||||
if (!isset($this->acl[$row['forum_id']][$row['auth_option']]) || (isset($this->acl[$row['forum_id']][$row['auth_option']]) && $this->acl[$row['forum_id']][$row['auth_option']] !== ACL_NO))
|
||||
{
|
||||
$this->acl[$row['forum_id']][$row['auth_option']] = $row['min_setting'];
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue