From 21f3fbc4be201a4fa277e65d30e694f0f75cb6ff Mon Sep 17 00:00:00 2001 From: Nils Adermann Date: Mon, 6 Mar 2006 18:21:54 +0000 Subject: Me, me, me! - only search unapproved posts/topics in forums where the user got the m_approve permission - resize the search cache when it grows too huge (drop distant pages) - added unread link to search results page - streamlined search results and viewforum html code for displaying topics so we're waiting for David now :) git-svn-id: file:///svn/phpbb/trunk@5607 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/develop/search_fill.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'phpBB/develop') diff --git a/phpBB/develop/search_fill.php b/phpBB/develop/search_fill.php index a4337245fa..8bb656b901 100644 --- a/phpBB/develop/search_fill.php +++ b/phpBB/develop/search_fill.php @@ -99,7 +99,7 @@ for(;$postcounter <= $max_post_id; $postcounter += $batchsize) $post_id = $rowset[$post_nr]['post_id']; - $search->index('post', $rowset[$post_nr]['post_id'], $rowset[$post_nr]['post_text'], $rowset[$post_nr]['post_subject']); + $search->index('post', $rowset[$post_nr]['post_id'], $rowset[$post_nr]['post_text'], $rowset[$post_nr]['post_subject'], $rowset[$post_nr]['poster_id']); } // $sql = "UNLOCK TABLES"; // $result = $db->sql_query($sql); -- cgit v1.2.1