From d65ee9f71ac1b6bf87cf8137e9fc38fc0c25a8ca Mon Sep 17 00:00:00 2001 From: David M Date: Thu, 6 Sep 2007 03:09:56 +0000 Subject: [PATCH] #14370 git-svn-id: file:///svn/phpbb/trunk@8080 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/docs/CHANGELOG.html | 1 + phpBB/includes/functions_admin.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html index 84a8946e06..975dc6c8e5 100644 --- a/phpBB/docs/CHANGELOG.html +++ b/phpBB/docs/CHANGELOG.html @@ -201,6 +201,7 @@ p a {
  • [Change] Moved note about dns_get_record function for using GTalk (Jabber) from Jabber log to Jabber ACP panel
  • [Fix] Do not use register_shutdown_function within cron.php if handling the queue and the mail function being used (Bug #14321)
  • [Fix] Fixing private message on-hold code if moving messages into folder based on rules (Bug #14309)
  • +
  • [Fix] Properly sync calls to move_posts() (Bug #14370)
  • diff --git a/phpBB/includes/functions_admin.php b/phpBB/includes/functions_admin.php index 4dfd58e28c..411d93ba25 100644 --- a/phpBB/includes/functions_admin.php +++ b/phpBB/includes/functions_admin.php @@ -504,7 +504,7 @@ function move_posts($post_ids, $topic_id, $auto_sync = true) sync('topic_reported', 'topic_id', $topic_ids); sync('topic_attachment', 'topic_id', $topic_ids); - sync('topic', 'topic_id', $topic_ids, true); + sync('topic', 'topic_id', $topic_ids, true, true); sync('forum', 'forum_id', $forum_ids, true, true); }