diff options
| author | Crizzo <mail@crizzo.de> | 2014-03-23 16:41:14 +0100 |
|---|---|---|
| committer | Crizzo <mail@crizzo.de> | 2014-03-28 19:36:08 +0100 |
| commit | 76558fbce536a9d09dbd3a594510b3616d09fc84 (patch) | |
| tree | d7ca0eca8c4faf57c5979cbb2ff4c5eed0e89806 /phpBB/memberlist.php | |
| parent | 0be6582d7fda1718794e7d20f4dcca7ed9c5e5e6 (diff) | |
| download | forums-76558fbce536a9d09dbd3a594510b3616d09fc84.tar forums-76558fbce536a9d09dbd3a594510b3616d09fc84.tar.gz forums-76558fbce536a9d09dbd3a594510b3616d09fc84.tar.bz2 forums-76558fbce536a9d09dbd3a594510b3616d09fc84.tar.xz forums-76558fbce536a9d09dbd3a594510b3616d09fc84.zip | |
[ticket/11336] Changes "leaders"-mode to "team"-mode and so in test-file
PHPBB3-11336
Diffstat (limited to 'phpBB/memberlist.php')
| -rw-r--r-- | phpBB/memberlist.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/memberlist.php b/phpBB/memberlist.php index ba4a4372a5..af177da2e0 100644 --- a/phpBB/memberlist.php +++ b/phpBB/memberlist.php @@ -30,7 +30,7 @@ $group_id = request_var('g', 0); $topic_id = request_var('t', 0); // Check our mode... -if (!in_array($mode, array('', 'group', 'viewprofile', 'email', 'contact', 'searchuser', 'leaders'))) +if (!in_array($mode, array('', 'group', 'viewprofile', 'email', 'contact', 'searchuser', 'team'))) { trigger_error('NO_MODE'); } @@ -64,12 +64,12 @@ $sort_dir = request_var('sd', 'a'); // What do you want to do today? ... oops, I think that line is taken ... switch ($mode) { - case 'leaders': + case 'team': // Display a listing of board admins, moderators include($phpbb_root_path . 'includes/functions_user.' . $phpEx); $page_title = $user->lang['THE_TEAM']; - $template_html = 'memberlist_leaders.html'; + $template_html = 'memberlist_team.html'; $sql = 'SELECT * FROM ' . TEAMPAGE_TABLE . ' |
