diff options
author | Cesar G <prototech91@gmail.com> | 2014-05-02 14:40:34 -0700 |
---|---|---|
committer | Cesar G <prototech91@gmail.com> | 2014-07-04 00:56:04 -0700 |
commit | e1513a985bd8c2e088f6d31232c516b6df1d4538 (patch) | |
tree | 475fc61e2503cfa1d9852a2fbc0ad022780fd046 /phpBB/includes/functions_content.php | |
parent | 35fab0fc72a2cc1fb473a10295f10539d176e9df (diff) | |
download | forums-e1513a985bd8c2e088f6d31232c516b6df1d4538.tar forums-e1513a985bd8c2e088f6d31232c516b6df1d4538.tar.gz forums-e1513a985bd8c2e088f6d31232c516b6df1d4538.tar.bz2 forums-e1513a985bd8c2e088f6d31232c516b6df1d4538.tar.xz forums-e1513a985bd8c2e088f6d31232c516b6df1d4538.zip |
[ticket/12013] Use the correct variable for the forum id.
PHPBB3-12013
Diffstat (limited to 'phpBB/includes/functions_content.php')
-rw-r--r-- | phpBB/includes/functions_content.php | 2 |
1 files changed, 1 insertions, 1 deletions
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++) |