diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2006-12-25 15:19:45 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2006-12-25 15:19:45 +0000 |
| commit | fcc22ef2b036c6c5438c227ffc13b3625860e753 (patch) | |
| tree | 65587fd3afb91d9d8cbacb9b53e0772ed554792e /phpBB/includes/auth.php | |
| parent | c428ca8f239e21b98b4f0ae6a4a0e58b9f6c46f1 (diff) | |
| download | forums-fcc22ef2b036c6c5438c227ffc13b3625860e753.tar forums-fcc22ef2b036c6c5438c227ffc13b3625860e753.tar.gz forums-fcc22ef2b036c6c5438c227ffc13b3625860e753.tar.bz2 forums-fcc22ef2b036c6c5438c227ffc13b3625860e753.tar.xz forums-fcc22ef2b036c6c5438c227ffc13b3625860e753.zip | |
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
Diffstat (limited to 'phpBB/includes/auth.php')
| -rw-r--r-- | phpBB/includes/auth.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/auth.php b/phpBB/includes/auth.php index a553d8e4ed..cf1b053f8c 100644 --- a/phpBB/includes/auth.php +++ b/phpBB/includes/auth.php @@ -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]]; } } } |
