aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorChris Smith <toonarmy@phpbb.com>2009-12-11 20:49:53 +0000
committerChris Smith <toonarmy@phpbb.com>2009-12-11 20:49:53 +0000
commite2fe61b7df1300b659e7671db17835603647e818 (patch)
tree4bafcac786f63455d0eebc27a7ae594bb8542df4 /phpBB/includes
parentd3cd9ce01ef27c50226b61ae1e0f9ff2e8c2573d (diff)
downloadforums-e2fe61b7df1300b659e7671db17835603647e818.tar
forums-e2fe61b7df1300b659e7671db17835603647e818.tar.gz
forums-e2fe61b7df1300b659e7671db17835603647e818.tar.bz2
forums-e2fe61b7df1300b659e7671db17835603647e818.tar.xz
forums-e2fe61b7df1300b659e7671db17835603647e818.zip
Restore user language choice to compiled stylesheets. Broken by r10008 #54035
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10319 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes')
-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 812b672c5c..690fed83e8 100644
--- a/phpBB/includes/functions.php
+++ b/phpBB/includes/functions.php
@@ -4154,7 +4154,7 @@ function page_header($page_title = '', $display_online_list = true, $item_id = 0
'T_ICONS_PATH' => "{$web_path}{$config['icons_path']}/",
'T_RANKS_PATH' => "{$web_path}{$config['ranks_path']}/",
'T_UPLOAD_PATH' => "{$web_path}{$config['upload_path']}/",
- 'T_STYLESHEET_LINK' => (!$user->theme['theme_storedb']) ? "{$web_path}styles/" . $user->theme['theme_path'] . '/theme/stylesheet.css' : append_sid("{$phpbb_root_path}style.$phpEx", 'id=' . $user->theme['style_id'] . '&amp;lang=' . $user->data['user_lang']),
+ 'T_STYLESHEET_LINK' => (!$user->theme['theme_storedb']) ? "{$web_path}styles/" . $user->theme['theme_path'] . '/theme/stylesheet.css' : append_sid("{$phpbb_root_path}style.$phpEx", 'id=' . $user->theme['style_id'] . '&amp;lang=' . $user->data['user_lang'], true, $user->session_id),
'T_STYLESHEET_NAME' => $user->theme['theme_name'],
'T_THEME_NAME' => $user->theme['theme_path'],