diff options
author | hubaishan <saeed@hubaishan.com> | 2016-12-29 13:11:19 +0300 |
---|---|---|
committer | hubaishan <saeed@hubaishan.com> | 2016-12-29 13:11:19 +0300 |
commit | 40bc4ac484223f78902e7275085a53ebc5e05dba (patch) | |
tree | d8993f42fc20574426c9f83e23166529b2b428ae | |
parent | 3ccaac488b77c2eb89a9db9ec025bfd2d14fa648 (diff) | |
download | forums-40bc4ac484223f78902e7275085a53ebc5e05dba.tar forums-40bc4ac484223f78902e7275085a53ebc5e05dba.tar.gz forums-40bc4ac484223f78902e7275085a53ebc5e05dba.tar.bz2 forums-40bc4ac484223f78902e7275085a53ebc5e05dba.tar.xz forums-40bc4ac484223f78902e7275085a53ebc5e05dba.zip |
[ticket/14549] Correcting $redirect var to avoid the bug
by this correct $redirect will go to clean mcp page after merge
PHPBB3-14549
-rw-r--r-- | phpBB/includes/mcp/mcp_forum.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/mcp/mcp_forum.php b/phpBB/includes/mcp/mcp_forum.php index e4c0640ec7..3deb58b96a 100644 --- a/phpBB/includes/mcp/mcp_forum.php +++ b/phpBB/includes/mcp/mcp_forum.php @@ -458,7 +458,7 @@ function merge_topics($forum_id, $topic_ids, $to_topic_id) return; } - $redirect = request_var('redirect', build_url(array('quickmod'))); + $redirect = request_var('redirect', "{$phpbb_root_path}mcp.$phpEx?f=$forum_id&i=main&mode=forum_view"); $s_hidden_fields = build_hidden_fields(array( 'i' => 'main', |