diff options
author | Bart van Bragt <bartvb@users.sourceforge.net> | 2001-12-14 01:59:24 +0000 |
---|---|---|
committer | Bart van Bragt <bartvb@users.sourceforge.net> | 2001-12-14 01:59:24 +0000 |
commit | c47ba954695019295b2cd766b63e7ae1d8e3328f (patch) | |
tree | 4501a80c68b599a4d24682502d074df3962bb15e /phpBB/develop | |
parent | 44d257f4401807c1d5e579197e737bfc55d6dcab (diff) | |
download | forums-c47ba954695019295b2cd766b63e7ae1d8e3328f.tar forums-c47ba954695019295b2cd766b63e7ae1d8e3328f.tar.gz forums-c47ba954695019295b2cd766b63e7ae1d8e3328f.tar.bz2 forums-c47ba954695019295b2cd766b63e7ae1d8e3328f.tar.xz forums-c47ba954695019295b2cd766b63e7ae1d8e3328f.zip |
Changed fixed table name to constant
git-svn-id: file:///svn/phpbb/trunk@1561 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/develop')
-rw-r--r-- | phpBB/develop/search_fill.php | 2 |
1 files changed, 1 insertions, 1 deletions
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); |