mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/12013] Use the correct variable for the forum id.
PHPBB3-12013
This commit is contained in:
parent
35fab0fc72
commit
e1513a985b
1 changed files with 1 additions and 1 deletions
|
@ -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_CAT' => ($row['forum_type'] == FORUM_CAT) ? true : false,
|
||||||
'S_IS_LINK' => ($row['forum_type'] == FORUM_LINK) ? true : false,
|
'S_IS_LINK' => ($row['forum_type'] == FORUM_LINK) ? true : false,
|
||||||
'S_IS_POST' => ($row['forum_type'] == FORUM_POST) ? 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++)
|
for ($i = 0; $i < $padding; $i++)
|
||||||
|
|
Loading…
Add table
Reference in a new issue