aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-03-28 23:32:05 +0100
committerJoas Schilling <nickvergessen@gmx.de>2014-03-28 23:32:05 +0100
commitc7d18eaadddb0c6ba90c0615c2d1ce05c3a409e3 (patch)
treec50d394653ed58ff7de4bf5add2d8576293b89b1 /phpBB/includes/functions.php
parente742d1ec2698388372a7eecf9dfe6c0403c929e3 (diff)
parent28f17897b48f7ec06958eda30cbceafaec907002 (diff)
downloadforums-c7d18eaadddb0c6ba90c0615c2d1ce05c3a409e3.tar
forums-c7d18eaadddb0c6ba90c0615c2d1ce05c3a409e3.tar.gz
forums-c7d18eaadddb0c6ba90c0615c2d1ce05c3a409e3.tar.bz2
forums-c7d18eaadddb0c6ba90c0615c2d1ce05c3a409e3.tar.xz
forums-c7d18eaadddb0c6ba90c0615c2d1ce05c3a409e3.zip
Merge remote-tracking branch 'crizz0/ticket/11336' into develop-ascraeus
* crizz0/ticket/11336: [ticket/11336] Adds 301 info to redirect [ticket/11336] Adds redirect for old "leaders" mode [ticket/11336] Changes language variabel LOGIN_EXPLAIN_LEADERS to _TEAM [ticket/11336] Changes "leaders"-mode to "team"-mode and so in test-file
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r--phpBB/includes/functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php
index 4d962db308..aa868c5431 100644
--- a/phpBB/includes/functions.php
+++ b/phpBB/includes/functions.php
@@ -4883,7 +4883,7 @@ function page_header($page_title = '', $display_online_list = false, $item_id =
'U_SEARCH_UNREAD' => append_sid("{$phpbb_root_path}search.$phpEx", 'search_id=unreadposts'),
'U_SEARCH_ACTIVE_TOPICS'=> append_sid("{$phpbb_root_path}search.$phpEx", 'search_id=active_topics'),
'U_DELETE_COOKIES' => append_sid("{$phpbb_root_path}ucp.$phpEx", 'mode=delete_cookies'),
- 'U_TEAM' => ($user->data['user_id'] != ANONYMOUS && !$auth->acl_get('u_viewprofile')) ? '' : append_sid("{$phpbb_root_path}memberlist.$phpEx", 'mode=leaders'),
+ 'U_TEAM' => ($user->data['user_id'] != ANONYMOUS && !$auth->acl_get('u_viewprofile')) ? '' : append_sid("{$phpbb_root_path}memberlist.$phpEx", 'mode=team'),
'U_TERMS_USE' => append_sid("{$phpbb_root_path}ucp.$phpEx", 'mode=terms'),
'U_PRIVACY' => append_sid("{$phpbb_root_path}ucp.$phpEx", 'mode=privacy'),
'U_RESTORE_PERMISSIONS' => ($user->data['user_perm_from'] && $auth->acl_get('a_switchperm')) ? append_sid("{$phpbb_root_path}ucp.$phpEx", 'mode=restore_perm') : '',