mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-05 16:27:38 +02:00
show dropdown box for choosing the forum in user management screen -> permissions
git-svn-id: file:///svn/phpbb/trunk@6808 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -113,7 +113,7 @@ class auth
|
||||
{
|
||||
if (isset($this->acl[0]))
|
||||
{
|
||||
$this->cache[$f][$opt] = $this->acl[0]{$this->acl_options['global'][$opt]};
|
||||
$this->cache[$f][$opt] = $this->acl[0][$this->acl_options['global'][$opt]];
|
||||
}
|
||||
}
|
||||
|
||||
@@ -123,7 +123,7 @@ class auth
|
||||
{
|
||||
if (isset($this->acl[$f]))
|
||||
{
|
||||
$this->cache[$f][$opt] |= $this->acl[$f]{$this->acl_options['local'][$opt]};
|
||||
$this->cache[$f][$opt] |= $this->acl[$f][$this->acl_options['local'][$opt]];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user