diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2009-01-13 18:27:57 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2009-01-13 18:27:57 +0000 |
| commit | 015004385fc4fd70a6c6ac22ab17a1ddbdfccc40 (patch) | |
| tree | bb5dd5fb04629038682506345f3b4c3ae1dc8fc7 | |
| parent | 92e5c4e7b396b9ddb55db39f757161da2082eeb6 (diff) | |
| download | forums-015004385fc4fd70a6c6ac22ab17a1ddbdfccc40.tar forums-015004385fc4fd70a6c6ac22ab17a1ddbdfccc40.tar.gz forums-015004385fc4fd70a6c6ac22ab17a1ddbdfccc40.tar.bz2 forums-015004385fc4fd70a6c6ac22ab17a1ddbdfccc40.tar.xz forums-015004385fc4fd70a6c6ac22ab17a1ddbdfccc40.zip | |
quick fix for USER_FOUNDER
git-svn-id: file:///svn/phpbb/trunk@9257 89ea8834-ac86-4346-8a33-228a782c2dd0
| -rw-r--r-- | phpBB/includes/classes/acl.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/classes/acl.php b/phpBB/includes/classes/acl.php index 97a7b02d41..049b0842e2 100644 --- a/phpBB/includes/classes/acl.php +++ b/phpBB/includes/classes/acl.php @@ -389,7 +389,7 @@ class phpbb_acl // Key 0 in $hold_ary are global options, all others are forum_ids // If this user is founder we're going to force fill the admin options ... - if ($userdata['user_type'] == USER_FOUNDER) + if ($userdata['user_type'] == phpbb::USER_FOUNDER) { foreach ($this->acl_options['global'] as $opt => $id) { |
