aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorLudovic Arnaud <ludovic_arnaud@users.sourceforge.net>2006-07-24 07:53:35 +0000
committerLudovic Arnaud <ludovic_arnaud@users.sourceforge.net>2006-07-24 07:53:35 +0000
commit48b2dc127761640810a8bbd6c59fd3c5be696778 (patch)
tree596a430aa663a6b10e402e6bc5799238ee7d879d /phpBB/includes
parentb7b8bf385741ab8c8a7ddfb4d3e5207e1a8db209 (diff)
downloadforums-48b2dc127761640810a8bbd6c59fd3c5be696778.tar
forums-48b2dc127761640810a8bbd6c59fd3c5be696778.tar.gz
forums-48b2dc127761640810a8bbd6c59fd3c5be696778.tar.bz2
forums-48b2dc127761640810a8bbd6c59fd3c5be696778.tar.xz
forums-48b2dc127761640810a8bbd6c59fd3c5be696778.zip
Fixed: bug #3243
git-svn-id: file:///svn/phpbb/trunk@6208 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes')
-rwxr-xr-xphpBB/includes/search/fulltext_native.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/search/fulltext_native.php b/phpBB/includes/search/fulltext_native.php
index 99640e56d9..3ee06822cd 100755
--- a/phpBB/includes/search/fulltext_native.php
+++ b/phpBB/includes/search/fulltext_native.php
@@ -1006,7 +1006,7 @@ class fulltext_native extends search_backend
FROM ' . SEARCH_WORDLIST_TABLE . ' w
LEFT JOIN ' . SEARCH_WORDMATCH_TABLE . ' m ON (w.word_id = m.word_id)
WHERE w.word_common = 0 AND m.word_id IS NULL
- GROUP BY w.word_id';
+ GROUP BY w.word_id, w.word_text';
$result = $db->sql_query($sql);
if ($row = $db->sql_fetchrow($result))