diff --git a/modules/search.module b/modules/search.module index 66a1c0d7eea080f5ce614a14c9e06d77fdc8ca1d..51a6dc745dcfef8ecf44630971a28c67d94afca3 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 66a1c0d7eea080f5ce614a14c9e06d77fdc8ca1d..51a6dc745dcfef8ecf44630971a28c67d94afca3 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; } }