diff options
Diffstat (limited to 'phpBB/search.php')
| -rw-r--r-- | phpBB/search.php | 2 |
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"; |
