From 8b0461940d2e1f90799e03e226fed1fd5782e42b Mon Sep 17 00:00:00 2001 From: Steven Wittens Date: Sun, 18 Dec 2005 12:28:26 +0000 Subject: - Fix minimum_word_size default values --- modules/search.module | 4 ++-- modules/search/search.module | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'modules') diff --git a/modules/search.module b/modules/search.module index 66a1c0d7e..51a6dc745 100644 --- a/modules/search.module +++ b/modules/search.module @@ -436,7 +436,7 @@ function search_preprocess(&$text) { * @ingroup search */ function search_index($sid, $type, $text) { - $minimum_word_size = variable_get('minimum_word_size', 4); + $minimum_word_size = variable_get('minimum_word_size', 3); // Link matching global $base_url; @@ -726,7 +726,7 @@ function _search_parse_query(&$word, &$scores, $not = false) { $split = explode(' ', $word); foreach ($split as $s) { $num = is_numeric($s); - if ($num || drupal_strlen($s) >= variable_get('minimum_word_size', 4)) { + if ($num || drupal_strlen($s) >= variable_get('minimum_word_size', 3)) { $scores[] = $num ? ((int)ltrim($word, '-0')) : $s; } } diff --git a/modules/search/search.module b/modules/search/search.module index 66a1c0d7e..51a6dc745 100644 --- a/modules/search/search.module +++ b/modules/search/search.module @@ -436,7 +436,7 @@ function search_preprocess(&$text) { * @ingroup search */ function search_index($sid, $type, $text) { - $minimum_word_size = variable_get('minimum_word_size', 4); + $minimum_word_size = variable_get('minimum_word_size', 3); // Link matching global $base_url; @@ -726,7 +726,7 @@ function _search_parse_query(&$word, &$scores, $not = false) { $split = explode(' ', $word); foreach ($split as $s) { $num = is_numeric($s); - if ($num || drupal_strlen($s) >= variable_get('minimum_word_size', 4)) { + if ($num || drupal_strlen($s) >= variable_get('minimum_word_size', 3)) { $scores[] = $num ? ((int)ltrim($word, '-0')) : $s; } } -- cgit v1.2.3