From cd632f62510bb78a619cb40a316478ca47ca5249 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Wed, 28 Jul 2004 20:32:21 +0000 Subject: - Alternative fix for search module bug. --- modules/search/search.module | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'modules/search') diff --git a/modules/search/search.module b/modules/search/search.module index a0c6ff81e..ef71e9493 100644 --- a/modules/search/search.module +++ b/modules/search/search.module @@ -279,7 +279,7 @@ function update_index($search_array) { // Walk through the array, giving a "weight" to each word based on // the number of times it appears in a page. foreach ($eachword as $word) { - if (strlen($word) >= $minimum_word_size) { + if (strlen($word) >= $minimum_word_size && strlen($word) <= 50) { if ($newwords[$word]) { $newwords[$word]++; } @@ -293,9 +293,7 @@ function update_index($search_array) { // the search index. if ($newwords) { foreach ($newwords as $key => $value) { - if (strlen($key) <= 50) { - db_query("INSERT INTO {search_index} VALUES('%s', %d, '%s', %d)", $key, $node['lno'], $node_type, $value); - } + db_query("INSERT INTO {search_index} VALUES('%s', %d, '%s', %d)", $key, $node['lno'], $node_type, $value); } } -- cgit v1.2.3