mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-29 21:10:31 +02:00
- added splitting of topics to mcp
- added merging of posts to mcp - fixed parsing of acl_getf results - adjusted tracking code for important announcements (seems to work now) git-svn-id: file:///svn/phpbb/trunk@4923 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -250,7 +250,7 @@ function move_topics($topic_ids, $forum_id, $auto_sync = true)
|
||||
}
|
||||
}
|
||||
|
||||
function move_posts($post_ids, $topic_id, $auto_sync = TRUE)
|
||||
function move_posts($post_ids, $topic_id, $auto_sync = true)
|
||||
{
|
||||
global $db;
|
||||
|
||||
@@ -304,8 +304,8 @@ function move_posts($post_ids, $topic_id, $auto_sync = TRUE)
|
||||
$forum_ids[] = $row['forum_id'];
|
||||
|
||||
sync('reported', 'topic_id', $topic_ids);
|
||||
sync('topic', 'topic_id', $topic_ids, TRUE);
|
||||
sync('forum', 'forum_id', $forum_ids, TRUE);
|
||||
sync('topic', 'topic_id', $topic_ids, true);
|
||||
sync('forum', 'forum_id', $forum_ids, true);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user