aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions.php
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2010-07-11 01:54:03 +0200
committerAndreas Fischer <bantu@phpbb.com>2010-07-11 01:54:03 +0200
commiteeb65d2958fcccc1fd2ccfbf9e154b4e30052977 (patch)
tree3b4ca10805dca7b18e64634709f317256611ff49 /phpBB/includes/functions.php
parenta2918fd98e61db0e7e9885fb546abc024c84d0fc (diff)
parent2d9aa45aefc4d4e4c76edd7763efc2cd97b0801f (diff)
downloadforums-eeb65d2958fcccc1fd2ccfbf9e154b4e30052977.tar
forums-eeb65d2958fcccc1fd2ccfbf9e154b4e30052977.tar.gz
forums-eeb65d2958fcccc1fd2ccfbf9e154b4e30052977.tar.bz2
forums-eeb65d2958fcccc1fd2ccfbf9e154b4e30052977.tar.xz
forums-eeb65d2958fcccc1fd2ccfbf9e154b4e30052977.zip
Merge branch 'develop-olympus' into develop
* develop-olympus: [ticket/9637] Do not cache SQL server version in all cases [ticket/9629] Allow style.php to retrieve its session ID from cookies [ticket/9678] Flash attachments are not displayed in subsilver2. [ticket/9677] Subsilver2 is missing the bbcode-helpline for inline-attachments. [ticket/9650] Do not allow banning the anonymous user by username Conflicts: phpBB/styles/subsilver2/template/attachment.html phpBB/styles/subsilver2/template/posting_buttons.html
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 d88960ff1d..fe80880789 100644
--- a/phpBB/includes/functions.php
+++ b/phpBB/includes/functions.php
@@ -4318,7 +4318,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'], true, $user->session_id),
+ '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_NAME' => $user->theme['theme_name'],
'T_THEME_NAME' => $user->theme['theme_path'],