diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2009-01-16 17:41:04 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2009-01-16 17:41:04 +0000 |
| commit | 57aea7e62f7df2424ffbd1adc90941bff482d7ea (patch) | |
| tree | 5b6e3c5c11c66509a9f600ce448a82d7fbd7b346 /phpBB/memberlist.php | |
| parent | 0df7a9b3e38773207441fac64c5e5c6323e59d6f (diff) | |
| download | forums-57aea7e62f7df2424ffbd1adc90941bff482d7ea.tar forums-57aea7e62f7df2424ffbd1adc90941bff482d7ea.tar.gz forums-57aea7e62f7df2424ffbd1adc90941bff482d7ea.tar.bz2 forums-57aea7e62f7df2424ffbd1adc90941bff482d7ea.tar.xz forums-57aea7e62f7df2424ffbd1adc90941bff482d7ea.zip | |
modified some files to get the admin index page working, as well as index page in logged in state and not logged in state
additionally prepare for a working installation
git-svn-id: file:///svn/phpbb/trunk@9272 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/memberlist.php')
| -rw-r--r-- | phpBB/memberlist.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/memberlist.php b/phpBB/memberlist.php index b646094050..26d9b89953 100644 --- a/phpBB/memberlist.php +++ b/phpBB/memberlist.php @@ -416,7 +416,7 @@ switch ($mode) // a_user admins and founder are able to view inactive users and bots to be able to manage them more easily // Normal users are able to see at least users having only changed their profile settings but not yet reactivated. - if (!$auth->acl_get('a_user') && $user->data['user_type'] != phpbb::USER_FOUNDER) + if (!$auth->acl_get('a_user') && !phpbb::$user->is_founder) { if ($member['user_type'] == phpbb::USER_IGNORE) { |
