From eaeaf5bfb60e4751b72a41d5ee94e59981ccce9f Mon Sep 17 00:00:00 2001 From: Meik Sievertsen Date: Tue, 30 May 2006 16:40:16 +0000 Subject: [PATCH] hopefully fixing bug #2022 with this git-svn-id: file:///svn/phpbb/trunk@5987 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/auth.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/phpBB/includes/auth.php b/phpBB/includes/auth.php index f5e7610786..d9887d569d 100644 --- a/phpBB/includes/auth.php +++ b/phpBB/includes/auth.php @@ -89,6 +89,9 @@ class auth /** * Look up an option * if the option is prefixed with !, then the result becomes negated + * + * If a forum id is specified the local option will be combined with a global option if one exist. + * If a forum id is not specified, only the global option will be checked. */ function acl_get($opt, $f = 0) { @@ -116,7 +119,8 @@ class auth } // Is this option a local permission setting? - if (isset($this->acl_options['local'][$opt])) + // But if we check for a global option only, we won't combine the options... + if ($f != 0 && isset($this->acl_options['local'][$opt])) { if (isset($this->acl[$f])) {