diff options
author | Chris Smith <toonarmy@phpbb.com> | 2011-09-20 23:12:07 +0100 |
---|---|---|
committer | Chris Smith <toonarmy@phpbb.com> | 2011-09-20 23:12:07 +0100 |
commit | c184fb86c9c6fb6a9dfdb731e785a145069a33ab (patch) | |
tree | 1263128c1dff76214a16830b689ab7a23303d240 /phpBB/includes | |
parent | ee994b2968492e5d4cf461ba2d2fa8c79a22e295 (diff) | |
download | forums-c184fb86c9c6fb6a9dfdb731e785a145069a33ab.tar forums-c184fb86c9c6fb6a9dfdb731e785a145069a33ab.tar.gz forums-c184fb86c9c6fb6a9dfdb731e785a145069a33ab.tar.bz2 forums-c184fb86c9c6fb6a9dfdb731e785a145069a33ab.tar.xz forums-c184fb86c9c6fb6a9dfdb731e785a145069a33ab.zip |
[feature/remove-db-styles] Removed style.php!
Finally sanity has arrived! No more delivering CSS through PHP. Better
3 years late than never.
PHPBB3-9741
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/functions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 23f3e88be4..5ccb9edd07 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -4566,7 +4566,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' => append_sid("{$phpbb_root_path}style.$phpEx", 'id=' . $user->theme['style_id'] . '&lang=' . $user->lang_name), + 'T_STYLESHEET_LINK' => "{$web_path}styles/" . $user->theme['theme_path'] . '/theme/stylesheet.css', 'T_STYLESHEET_LANG_LINK' => "{$web_path}styles/" . $user->theme['theme_path'] . '/theme/' . $user->lang_name . '/stylesheet.css', 'T_STYLESHEET_NAME' => $user->theme['theme_name'], |