diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2004-07-09 12:31:33 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2004-07-09 12:31:33 +0000 |
commit | bdd1643a7d316bdeaeca564412b4f83cd40199fd (patch) | |
tree | 1e9a11bb9e84062bb04c83f0b150aeca1b44a866 /phpBB/includes/functions_admin.php | |
parent | e083255f661573641167afd52f5c41a0588e49d3 (diff) | |
download | forums-bdd1643a7d316bdeaeca564412b4f83cd40199fd.tar forums-bdd1643a7d316bdeaeca564412b4f83cd40199fd.tar.gz forums-bdd1643a7d316bdeaeca564412b4f83cd40199fd.tar.bz2 forums-bdd1643a7d316bdeaeca564412b4f83cd40199fd.tar.xz forums-bdd1643a7d316bdeaeca564412b4f83cd40199fd.zip |
- 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
Diffstat (limited to 'phpBB/includes/functions_admin.php')
-rw-r--r-- | phpBB/includes/functions_admin.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/functions_admin.php b/phpBB/includes/functions_admin.php index b7d0adf305..067f463325 100644 --- a/phpBB/includes/functions_admin.php +++ b/phpBB/includes/functions_admin.php @@ -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); } } |