diff options
Diffstat (limited to 'modules/search.module')
-rw-r--r-- | modules/search.module | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/modules/search.module b/modules/search.module index a0c6ff81e..ef71e9493 100644 --- a/modules/search.module +++ b/modules/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); } } |