diff options
| author | Jakub Senko <jakubsenko@gmail.com> | 2018-09-25 16:18:58 +0200 |
|---|---|---|
| committer | Jakub Senko <jakubsenko@gmail.com> | 2018-09-26 16:29:43 +0200 |
| commit | f82e0a83d1c6ec488f47013d583912f7082406d4 (patch) | |
| tree | 5cad33c94291753769cb183b8d6975cddb87435e | |
| parent | 001f32da95d4f8697ccc9a6107afc8dc68cbe48e (diff) | |
| download | forums-f82e0a83d1c6ec488f47013d583912f7082406d4.tar forums-f82e0a83d1c6ec488f47013d583912f7082406d4.tar.gz forums-f82e0a83d1c6ec488f47013d583912f7082406d4.tar.bz2 forums-f82e0a83d1c6ec488f47013d583912f7082406d4.tar.xz forums-f82e0a83d1c6ec488f47013d583912f7082406d4.zip | |
[ticket/15616] Add jumpbox to login_forum.html
PHPBB3-15616
| -rw-r--r-- | phpBB/includes/functions.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 1457888c9f..20d24819ec 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -2539,7 +2539,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); @@ -2624,6 +2624,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(); } |
