Skip to content
Snippets Groups Projects
Commit 8b046194 authored by Steven Wittens's avatar Steven Wittens
Browse files

- Fix minimum_word_size default values

parent 0dfc8e05
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -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;
}
}
......
......@@ -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;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment