From c47ba954695019295b2cd766b63e7ae1d8e3328f Mon Sep 17 00:00:00 2001 From: Bart van Bragt Date: Fri, 14 Dec 2001 01:59:24 +0000 Subject: [PATCH] Changed fixed table name to constant git-svn-id: file:///svn/phpbb/trunk@1561 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/develop/search_fill.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/develop/search_fill.php b/phpBB/develop/search_fill.php index b993015ac3..538ab10fe6 100644 --- a/phpBB/develop/search_fill.php +++ b/phpBB/develop/search_fill.php @@ -275,7 +275,7 @@ for(;$postcounter <= $max_post_id; $postcounter += $batchsize) // Get the word_id's out of the DB (to see if they are already there) $sql = "SELECT word_id, word_text - FROM phpbb_search_wordlist + FROM ".SEARCH_WORD_TABLE." WHERE word_text IN ($sql_select) GROUP BY word_text"; $result = $db->sql_query($sql);