diff options
author | David M <davidmj@users.sourceforge.net> | 2007-09-06 03:55:29 +0000 |
---|---|---|
committer | David M <davidmj@users.sourceforge.net> | 2007-09-06 03:55:29 +0000 |
commit | a74fe8a8113f9b20fa8bb16b16d07592d54b7186 (patch) | |
tree | edc4d4c999ae3322979b9c200fca62e521aad2f5 | |
parent | 3af602fca429db22bb69f2254fb195e2b248a5b8 (diff) | |
download | forums-a74fe8a8113f9b20fa8bb16b16d07592d54b7186.tar forums-a74fe8a8113f9b20fa8bb16b16d07592d54b7186.tar.gz forums-a74fe8a8113f9b20fa8bb16b16d07592d54b7186.tar.bz2 forums-a74fe8a8113f9b20fa8bb16b16d07592d54b7186.tar.xz forums-a74fe8a8113f9b20fa8bb16b16d07592d54b7186.zip |
#14363
git-svn-id: file:///svn/phpbb/trunk@8082 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/docs/CHANGELOG.html | 1 | ||||
-rw-r--r-- | phpBB/includes/mcp/mcp_topic.php | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html index 84a8946e06..63bf32773f 100644 --- a/phpBB/docs/CHANGELOG.html +++ b/phpBB/docs/CHANGELOG.html @@ -201,6 +201,7 @@ p a { <li>[Change] Moved note about dns_get_record function for using GTalk (Jabber) from Jabber log to Jabber ACP panel</li> <li>[Fix] Do not use register_shutdown_function within cron.php if handling the queue and the mail function being used (Bug #14321)</li> <li>[Fix] Fixing private message on-hold code if moving messages into folder based on rules (Bug #14309)</li> + <li>[Fix] Allow the merge selection screen to work (Bug #14363)</li> </ul> </div> diff --git a/phpBB/includes/mcp/mcp_topic.php b/phpBB/includes/mcp/mcp_topic.php index 1002b1c918..900faa5adc 100644 --- a/phpBB/includes/mcp/mcp_topic.php +++ b/phpBB/includes/mcp/mcp_topic.php @@ -293,7 +293,7 @@ function mcp_topic_view($id, $mode, $action) 'S_SHOW_TOPIC_ICONS' => $s_topic_icons, 'S_TOPIC_ICON' => $icon_id, - 'U_SELECT_TOPIC' => "$url&i=$id&mode=forum_view&action=merge_select", + 'U_SELECT_TOPIC' => "$url&i=$id&mode=forum_view&action=merge_select" . (($forum_id) ? "&f=$forum_id" : ''), 'RETURN_TOPIC' => sprintf($user->lang['RETURN_TOPIC'], '<a href="' . append_sid("{$phpbb_root_path}viewtopic.$phpEx", "f={$topic_info['forum_id']}&t={$topic_info['topic_id']}&start=$start") . '">', '</a>'), 'RETURN_FORUM' => sprintf($user->lang['RETURN_FORUM'], '<a href="' . append_sid("{$phpbb_root_path}viewforum.$phpEx", "f={$topic_info['forum_id']}&start=$start") . '">', '</a>'), |