1
0
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:
Meik Sievertsen
2006-12-25 15:19:45 +00:00
parent c428ca8f23
commit fcc22ef2b0
6 changed files with 85 additions and 39 deletions

View File

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