aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2018-10-13 16:31:02 -0700
committerMarc Alexander <admin@m-a-styles.de>2018-10-13 16:31:02 -0700
commit2fcf49c8392214eddfde5f227a3f15ad73ae557d (patch)
treed6d8c1195308c82b4fed8ac6127a43c7749b57f9 /phpBB
parent5d98b66e95ca6e93e05e13577a35f6f63f48562e (diff)
parentf82e0a83d1c6ec488f47013d583912f7082406d4 (diff)
downloadforums-2fcf49c8392214eddfde5f227a3f15ad73ae557d.tar
forums-2fcf49c8392214eddfde5f227a3f15ad73ae557d.tar.gz
forums-2fcf49c8392214eddfde5f227a3f15ad73ae557d.tar.bz2
forums-2fcf49c8392214eddfde5f227a3f15ad73ae557d.tar.xz
forums-2fcf49c8392214eddfde5f227a3f15ad73ae557d.zip
Merge pull request #5381 from senky/ticket/15616
[ticket/15616] Remove jumpbox from login_forum.html
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/includes/functions.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php
index b2e82574e0..3fec88a354 100644
--- a/phpBB/includes/functions.php
+++ b/phpBB/includes/functions.php
@@ -2541,7 +2541,7 @@ function login_box($redirect = '', $l_explain = '', $l_success = '', $admin = fa
*/
function login_forum_box($forum_data)
{
- global $db, $phpbb_container, $request, $template, $user, $phpbb_dispatcher;
+ global $db, $phpbb_container, $request, $template, $user, $phpbb_dispatcher, $phpbb_root_path, $phpEx;
$password = $request->variable('password', '', true);
@@ -2626,6 +2626,8 @@ function login_forum_box($forum_data)
'body' => 'login_forum.html')
);
+ make_jumpbox(append_sid("{$phpbb_root_path}viewforum.$phpEx"), $forum_data['forum_id']);
+
page_footer();
}