From 6f7dbcde8857c6365c9fc6fefc4ad3adb17b3582 Mon Sep 17 00:00:00 2001 From: Henry Sudhof Date: Mon, 9 Jun 2008 12:36:06 +0000 Subject: [PATCH] #27325 git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8631 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/docs/CHANGELOG.html | 1 + phpBB/includes/mcp/mcp_main.php | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html index aa4d017187..1864012a5a 100644 --- a/phpBB/docs/CHANGELOG.html +++ b/phpBB/docs/CHANGELOG.html @@ -117,6 +117,7 @@
  • [Change] Don't allow redirects to different domains. (thanks nookieman)
  • [Fix] Delete drafts and bookmarks when deleting an user. (#27585, thanks Schumi for the fix)
  • [Fix] Set last_post_subject for new topics. (#23945)
  • +
  • [Fix] Allow moving posts to invisible forums. (#27325)
  • 1.ii. Changes since 3.0.0

    diff --git a/phpBB/includes/mcp/mcp_main.php b/phpBB/includes/mcp/mcp_main.php index b16bd8d816..85f9a1e839 100644 --- a/phpBB/includes/mcp/mcp_main.php +++ b/phpBB/includes/mcp/mcp_main.php @@ -554,7 +554,7 @@ function mcp_move_topic($topic_ids) if ($to_forum_id) { - $forum_data = get_forum_data($to_forum_id); + $forum_data = get_forum_data($to_forum_id, 'f_post'); if (!sizeof($forum_data)) { @@ -953,7 +953,7 @@ function mcp_fork_topic($topic_ids) if ($to_forum_id) { - $forum_data = get_forum_data($to_forum_id); + $forum_data = get_forum_data($to_forum_id, 'f_post'); if (!sizeof($topic_ids)) { @@ -990,7 +990,7 @@ function mcp_fork_topic($topic_ids) if (confirm_box(true)) { - $topic_data = get_topic_data($topic_ids); + $topic_data = get_topic_data($topic_ids, 'f_post'); $total_posts = 0; $new_topic_id_list = array();