From e1513a985bd8c2e088f6d31232c516b6df1d4538 Mon Sep 17 00:00:00 2001 From: Cesar G Date: Fri, 2 May 2014 14:40:34 -0700 Subject: [PATCH] [ticket/12013] Use the correct variable for the forum id. PHPBB3-12013 --- phpBB/includes/functions_content.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/includes/functions_content.php b/phpBB/includes/functions_content.php index d1a001110f..ee78364083 100644 --- a/phpBB/includes/functions_content.php +++ b/phpBB/includes/functions_content.php @@ -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++)