1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-06 15:45:34 +02:00
git-svn-id: file:///svn/phpbb/trunk@8080 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
David M 2007-09-06 03:09:56 +00:00
parent feee13f962
commit d65ee9f71a
2 changed files with 2 additions and 1 deletions

View File

@ -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] Properly sync calls to move_posts() (Bug #14370)</li>
</ul>
</div>

View File

@ -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);
}