diff options
author | Andreas Fischer <bantu@phpbb.com> | 2013-05-06 21:56:20 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2013-05-06 21:56:20 +0200 |
commit | 841f1e492204b67443f9595e2ecdb571e74aabe9 (patch) | |
tree | 86d6eed8f5f27aaf933a5bd5357c7463fdf4338e /phpBB/includes/functions.php | |
parent | 92e0613324ac1ddff9c303aaed58eeecb0dfe6b2 (diff) | |
parent | eefcdfa54a80e4f62c88b6758b2e1d22740d1ddd (diff) | |
download | forums-841f1e492204b67443f9595e2ecdb571e74aabe9.tar forums-841f1e492204b67443f9595e2ecdb571e74aabe9.tar.gz forums-841f1e492204b67443f9595e2ecdb571e74aabe9.tar.bz2 forums-841f1e492204b67443f9595e2ecdb571e74aabe9.tar.xz forums-841f1e492204b67443f9595e2ecdb571e74aabe9.zip |
Merge remote-tracking branch 'MGaetan89/ticket/11144' into develop-olympus
* MGaetan89/ticket/11144:
[ticket/11144] Add missing {FORUM_NAME} variable
[ticket/11144] Add missing {FORUM_NAME} variable
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r-- | phpBB/includes/functions.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index ccd2d3147c..98a1dab722 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -3272,6 +3272,7 @@ function login_forum_box($forum_data) page_header($user->lang['LOGIN'], false); $template->assign_vars(array( + 'FORUM_NAME' => isset($forum_data['forum_name']) ? $forum_data['forum_name'] : '', 'S_LOGIN_ACTION' => build_url(array('f')), 'S_HIDDEN_FIELDS' => build_hidden_fields(array('f' => $forum_data['forum_id']))) ); |