1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-31 11:39:37 +02: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:
Paul S. Owen 2003-04-24 23:00:52 +00:00
parent 51b0a56996
commit fc2ecf2de9

View File

@ -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'];
}