diff options
author | Michael Miday <midaym@gmail.com> | 2015-09-15 22:23:24 +0200 |
---|---|---|
committer | Michael Miday <midaym@gmail.com> | 2015-09-17 18:37:25 +0200 |
commit | 956723af0ed94f79dbbeed2bcfc8617b2c73960e (patch) | |
tree | 66f146e670006275f0231bd73dcfb0c72fbbfa7c /phpBB/includes/functions.php | |
parent | eab8a12fb8356391cb01bae909494ca828a8a6bc (diff) | |
download | forums-956723af0ed94f79dbbeed2bcfc8617b2c73960e.tar forums-956723af0ed94f79dbbeed2bcfc8617b2c73960e.tar.gz forums-956723af0ed94f79dbbeed2bcfc8617b2c73960e.tar.bz2 forums-956723af0ed94f79dbbeed2bcfc8617b2c73960e.tar.xz forums-956723af0ed94f79dbbeed2bcfc8617b2c73960e.zip |
[ticket/12769] Properly include FA
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r-- | phpBB/includes/functions.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 311208baf3..58b2f0ca57 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -4410,7 +4410,8 @@ function page_header($page_title = '', $display_online_list = false, $item_id = 'T_RANKS_PATH' => "{$web_path}{$config['ranks_path']}/", 'T_UPLOAD_PATH' => "{$web_path}{$config['upload_path']}/", 'T_STYLESHEET_LINK' => "{$web_path}styles/" . rawurlencode($user->style['style_path']) . '/theme/stylesheet.css?assets_version=' . $config['assets_version'], - 'T_STYLESHEET_LANG_LINK' => "{$web_path}styles/" . rawurlencode($user->style['style_path']) . '/theme/' . $user->lang_name . '/stylesheet.css?assets_version=' . $config['assets_version'], + 'T_STYLESHEET_LANG_LINK'=> "{$web_path}styles/" . rawurlencode($user->style['style_path']) . '/theme/' . $user->lang_name . '/stylesheet.css?assets_version=' . $config['assets_version'], + 'T_FONT_AWESOME_LINK' => !empty($config['allow_cdn']) && !empty($config['load_font_awesome_url']) ? $config['load_font_awesome_url'] : "{$web_path}assets/css/font-awesome.min.css?assets_version=" . $config['assets_version'], 'T_JQUERY_LINK' => !empty($config['allow_cdn']) && !empty($config['load_jquery_url']) ? $config['load_jquery_url'] : "{$web_path}assets/javascript/jquery.min.js?assets_version=" . $config['assets_version'], 'S_ALLOW_CDN' => !empty($config['allow_cdn']), |