diff options
-rw-r--r-- | phpBB/memberlist.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/memberlist.php b/phpBB/memberlist.php index 8fdb7f0a07..df47fd2f4b 100644 --- a/phpBB/memberlist.php +++ b/phpBB/memberlist.php @@ -32,7 +32,8 @@ $topic_id = request_var('t', 0); // Redirect when old mode is used if ($mode == 'leaders') { - redirect(append_sid("{$phpbb_root_path}memberlist.$phpEx", 'mode=team')); + send_status_line(301, 'Moved Permanently'); + redirect(append_sid("{$phpbb_root_path}memberlist.$phpEx", 'mode=team')); } // Check our mode... |