From d95588823a7e2797fa3502ea145ca54689135a16 Mon Sep 17 00:00:00 2001 From: Meik Sievertsen Date: Wed, 26 Feb 2003 13:17:45 +0000 Subject: only minor changes, some notes, played around with the code... nothing special. git-svn-id: file:///svn/phpbb/trunk@3543 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/develop/search_fill.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'phpBB/develop/search_fill.php') diff --git a/phpBB/develop/search_fill.php b/phpBB/develop/search_fill.php index 8cfea84f02..d8a2dfc11d 100644 --- a/phpBB/develop/search_fill.php +++ b/phpBB/develop/search_fill.php @@ -33,7 +33,7 @@ $synonym_array = file($phpbb_root_path . "language/lang_english/search_synonyms. // Fetch a batch of posts_text entries // $sql = "SELECT COUNT(*) as total, MAX(post_id) as max_post_id - FROM ". POSTS_TEXT_TABLE; + FROM ". POSTS_TABLE; if ( !($result = $db->sql_query($sql)) ) { $error = $db->sql_error(); @@ -56,7 +56,7 @@ for(;$postcounter <= $max_post_id; $postcounter += $batchsize) $batchcount++; $sql = "SELECT * - FROM " . POSTS_TEXT_TABLE . " + FROM " . POSTS_TABLE . " WHERE post_id BETWEEN $batchstart AND $batchend"; -- cgit v1.2.1