diff options
author | Marc Alexander <admin@m-a-styles.de> | 2018-10-09 22:58:32 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2018-10-09 22:58:32 +0200 |
commit | 6087f0347c96057db9067a65cd0f56fe80fbf05b (patch) | |
tree | d00d39fa43acf2f3d301185968d72994e23b39b5 | |
parent | 407d179702804f1c82b3c8b8fbc5e3e7175c1d81 (diff) | |
parent | dab4c10c2fe0a2e283ecf5227ef9a253127a1381 (diff) | |
download | forums-6087f0347c96057db9067a65cd0f56fe80fbf05b.tar forums-6087f0347c96057db9067a65cd0f56fe80fbf05b.tar.gz forums-6087f0347c96057db9067a65cd0f56fe80fbf05b.tar.bz2 forums-6087f0347c96057db9067a65cd0f56fe80fbf05b.tar.xz forums-6087f0347c96057db9067a65cd0f56fe80fbf05b.zip |
Merge pull request #5377 from senky/ticket/15700
[ticket/15700] Use correct T_THEME_LANG_NAME
-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 b3d1d96b6e..a612406e5c 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -4508,7 +4508,7 @@ function page_header($page_title = '', $display_online_list = false, $item_id = 'S_COOKIE_NOTICE' => !empty($config['cookie_notice']), 'T_THEME_NAME' => rawurlencode($user->style['style_path']), - 'T_THEME_LANG_NAME' => $user->data['user_lang'], + 'T_THEME_LANG_NAME' => $user->lang_name, 'T_TEMPLATE_NAME' => $user->style['style_path'], 'T_SUPER_TEMPLATE_NAME' => rawurlencode((isset($user->style['style_parent_tree']) && $user->style['style_parent_tree']) ? $user->style['style_parent_tree'] : $user->style['style_path']), 'T_IMAGES' => 'images', |