diff options
author | Henry Sudhof <kellanved@phpbb.com> | 2008-06-09 12:36:06 +0000 |
---|---|---|
committer | Henry Sudhof <kellanved@phpbb.com> | 2008-06-09 12:36:06 +0000 |
commit | 6f7dbcde8857c6365c9fc6fefc4ad3adb17b3582 (patch) | |
tree | 9943e9ed544554d9f403843b53b0482a9c367bc9 | |
parent | 00298c4a7976ac475c9690a541b0238ff9b23922 (diff) | |
download | forums-6f7dbcde8857c6365c9fc6fefc4ad3adb17b3582.tar forums-6f7dbcde8857c6365c9fc6fefc4ad3adb17b3582.tar.gz forums-6f7dbcde8857c6365c9fc6fefc4ad3adb17b3582.tar.bz2 forums-6f7dbcde8857c6365c9fc6fefc4ad3adb17b3582.tar.xz forums-6f7dbcde8857c6365c9fc6fefc4ad3adb17b3582.zip |
#27325
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8631 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/docs/CHANGELOG.html | 1 | ||||
-rw-r--r-- | 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 @@ <li>[Change] Don't allow redirects to different domains. (thanks nookieman)</li> <li>[Fix] Delete drafts and bookmarks when deleting an user. (#27585, thanks Schumi for the fix)</li> <li>[Fix] Set last_post_subject for new topics. (#23945)</li> + <li>[Fix] Allow moving posts to invisible forums. (#27325)</li> </ul> <a name="v300"></a><h3>1.ii. Changes since 3.0.0</h3> 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(); |