aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions.php
diff options
context:
space:
mode:
authorNathan Guse <nathaniel.guse@gmail.com>2012-09-15 11:10:25 -0500
committerNathan Guse <nathaniel.guse@gmail.com>2012-09-15 11:28:58 -0500
commit9e5505933aec5a57e57018e6375be0bf28636fbe (patch)
tree7ebfb651ae0c97ae1a3f36044bf2857595735b25 /phpBB/includes/functions.php
parent480e3daede1cba1e0c62878be3bd12810e4ccf37 (diff)
downloadforums-9e5505933aec5a57e57018e6375be0bf28636fbe.tar
forums-9e5505933aec5a57e57018e6375be0bf28636fbe.tar.gz
forums-9e5505933aec5a57e57018e6375be0bf28636fbe.tar.bz2
forums-9e5505933aec5a57e57018e6375be0bf28636fbe.tar.xz
forums-9e5505933aec5a57e57018e6375be0bf28636fbe.zip
[ticket/11021] Fix the language changes that were lost previously
Change U_HOME to U_SITE_HOME PHPBB3-11021
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 4f80c63990..d05b451cee 100644
--- a/phpBB/includes/functions.php
+++ b/phpBB/includes/functions.php
@@ -4946,8 +4946,8 @@ function page_header($page_title = '', $display_online_list = true, $item_id = 0
'U_VIEWONLINE' => ($auth->acl_gets('u_viewprofile', 'a_user', 'a_useradd', 'a_userdel')) ? append_sid("{$phpbb_root_path}viewonline.$phpEx") : '',
'U_LOGIN_LOGOUT' => $u_login_logout,
'U_INDEX' => append_sid("{$phpbb_root_path}index.$phpEx"),
- 'U_HOME' => $config['site_home_url'],
'U_SEARCH' => append_sid("{$phpbb_root_path}search.$phpEx"),
+ 'U_SITE_HOME' => $config['site_home_url'],
'U_REGISTER' => append_sid("{$phpbb_root_path}ucp.$phpEx", 'mode=register'),
'U_PROFILE' => append_sid("{$phpbb_root_path}ucp.$phpEx"),
'U_MODCP' => append_sid("{$phpbb_root_path}mcp.$phpEx", false, true, $user->session_id),