aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/search.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2001-11-09 13:26:55 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2001-11-09 13:26:55 +0000
commit4e0ec70803fbe176cda9775d34aacefedc4cd4cb (patch)
treefa989ec176aa8da924cfa3c452d5dc99aefd242e /phpBB/search.php
parent16a20599ff0d05a7955f33ed7f423547d3e63c2e (diff)
downloadforums-4e0ec70803fbe176cda9775d34aacefedc4cd4cb.tar
forums-4e0ec70803fbe176cda9775d34aacefedc4cd4cb.tar.gz
forums-4e0ec70803fbe176cda9775d34aacefedc4cd4cb.tar.bz2
forums-4e0ec70803fbe176cda9775d34aacefedc4cd4cb.tar.xz
forums-4e0ec70803fbe176cda9775d34aacefedc4cd4cb.zip
Altered for constant table names
git-svn-id: file:///svn/phpbb/trunk@1297 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/search.php')
-rw-r--r--phpBB/search.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/search.php b/phpBB/search.php
index a60663592d..da5076f8b3 100644
--- a/phpBB/search.php
+++ b/phpBB/search.php
@@ -307,7 +307,7 @@ else if( $query_keywords != "" || $query_author != "" || $search_id )
$match_word = str_replace("*", "%", $match_word_list[$i]);
$sql = "SELECT m.post_id, m.word_count
- FROM phpbb_search_wordlist w, phpbb_search_wordmatch m
+ FROM " . SEARCH_WORD_TABLE . " w, " . SEARCH_MATCH_TABLE . " m
WHERE w.word_text LIKE '$match_word'
AND m.word_id = w.word_id
ORDER BY m.post_id, m.word_count DESC";