1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-14 04:30:29 +01:00

[ticket/12013] Use the correct variable for the forum id.

PHPBB3-12013
This commit is contained in:
Cesar G 2014-05-02 14:40:34 -07:00
parent 35fab0fc72
commit e1513a985b

View File

@ -190,7 +190,7 @@ function make_jumpbox($action, $forum_id = false, $select_all = false, $acl_list
'S_IS_CAT' => ($row['forum_type'] == FORUM_CAT) ? true : false,
'S_IS_LINK' => ($row['forum_type'] == FORUM_LINK) ? true : false,
'S_IS_POST' => ($row['forum_type'] == FORUM_POST) ? true : false,
'LINK' => $phpbb_path_helper->append_url_params($action, array('f' => $forum_id)),
'LINK' => $phpbb_path_helper->append_url_params($action, array('f' => $row['forum_id'])),
));
for ($i = 0; $i < $padding; $i++)