diff options
author | Gaëtan Muller <m.gaetan89@gmail.com> | 2013-04-21 14:22:45 +0200 |
---|---|---|
committer | Gaëtan Muller <m.gaetan89@gmail.com> | 2013-05-06 21:31:16 +0200 |
commit | 828d3b6b68acad606fe150cff7993c216ebc4474 (patch) | |
tree | b1c48ae7bab80c2094b5753096fd1f586a641585 /phpBB/posting.php | |
parent | 453f98f6d3528ee0598581973f8c8a9bbcdcb25a (diff) | |
download | forums-828d3b6b68acad606fe150cff7993c216ebc4474.tar forums-828d3b6b68acad606fe150cff7993c216ebc4474.tar.gz forums-828d3b6b68acad606fe150cff7993c216ebc4474.tar.bz2 forums-828d3b6b68acad606fe150cff7993c216ebc4474.tar.xz forums-828d3b6b68acad606fe150cff7993c216ebc4474.zip |
[ticket/11144] Add missing {FORUM_NAME} variable
The template variable {FORUM_NAME} was missing from
the login page of a password protected forum
PHPBB3-11144
Diffstat (limited to 'phpBB/posting.php')
-rw-r--r-- | phpBB/posting.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/posting.php b/phpBB/posting.php index e57f5420f5..b351f67218 100644 --- a/phpBB/posting.php +++ b/phpBB/posting.php @@ -196,6 +196,7 @@ if ($post_data['forum_password']) { login_forum_box(array( 'forum_id' => $forum_id, + 'forum_name' => $post_data['forum_name'], 'forum_password' => $post_data['forum_password']) ); } |