aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_admin.php
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2006-07-07 18:43:52 +0000
committerNils Adermann <naderman@naderman.de>2006-07-07 18:43:52 +0000
commitc6227ad5b0904c2c61737c8267f71fbc9f543a3b (patch)
tree816b1d766d2bc1c3dc15b6071c19895f379830c7 /phpBB/includes/functions_admin.php
parenta5c23243c7a0a86ccd749b7733b11d30a6c349e1 (diff)
downloadforums-c6227ad5b0904c2c61737c8267f71fbc9f543a3b.tar
forums-c6227ad5b0904c2c61737c8267f71fbc9f543a3b.tar.gz
forums-c6227ad5b0904c2c61737c8267f71fbc9f543a3b.tar.bz2
forums-c6227ad5b0904c2c61737c8267f71fbc9f543a3b.tar.xz
forums-c6227ad5b0904c2c61737c8267f71fbc9f543a3b.zip
- fixed a parse error (oops)
- pass forum_ids to search indexing functions - fixed a bug in fulltext_native's cache destroying git-svn-id: file:///svn/phpbb/trunk@6152 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_admin.php')
-rw-r--r--phpBB/includes/functions_admin.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/functions_admin.php b/phpBB/includes/functions_admin.php
index dc873eff60..4fca718e06 100644
--- a/phpBB/includes/functions_admin.php
+++ b/phpBB/includes/functions_admin.php
@@ -361,7 +361,7 @@ function filelist($rootdir, $dir = '', $type = 'gif|jpg|jpeg|png')
return $matches;
}
-/*
+/**
* Move topic(s)
*/
function move_topics($topic_ids, $forum_id, $auto_sync = true)
@@ -621,7 +621,7 @@ function delete_posts($where_type, $where_ids, $auto_sync = true, $posted_sync =
trigger_error($error);
}
- $search->index_remove($post_ids, $poster_ids);
+ $search->index_remove($post_ids, $poster_ids, $forum_ids);
delete_attachments('post', $post_ids, false);