mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Fixed "apparent" issue with super moderators remaining after "deletion"
git-svn-id: file:///svn/phpbb/trunk@3295 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
77e09080dc
commit
fe1c986988
1 changed files with 2 additions and 9 deletions
|
@ -19,13 +19,6 @@
|
|||
*
|
||||
***************************************************************************/
|
||||
|
||||
// NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE
|
||||
//
|
||||
// Problem appears to exist with super moderators ...
|
||||
// possibly related to general global issues
|
||||
//
|
||||
// NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE
|
||||
|
||||
if (!empty($setmodules))
|
||||
{
|
||||
$filename = basename(__FILE__);
|
||||
|
@ -238,11 +231,11 @@ if (!empty($forum_id) || $mode == 'administrators' || $mode == 'supermoderators'
|
|||
break;
|
||||
|
||||
case 'supermoderators':
|
||||
$forum_sql = '';
|
||||
$forum_sql = 'AND a.forum_id = 0';
|
||||
break;
|
||||
|
||||
case 'administrators':
|
||||
$forum_sql = '';
|
||||
$forum_sql = 'AND a.forum_id = 0';
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue