diff --git a/modules/search.module b/modules/search.module index 111bd0155a4..f35979d7f21 100644 --- a/modules/search.module +++ b/modules/search.module @@ -250,7 +250,7 @@ function update_index($search_array) { ** false count of the number of hist, and doesn't show up ** when clicking on a node from the search interface anyway. */ - $wordlist = $node["text1"] . $node["text2"]; + $wordlist = $node["text1"] ." ". $node["text2"]; // Strip heaps of stuff out of it $wordlist = preg_replace("'<[\/\!]*?[^<>]*?>'si", "", $wordlist); diff --git a/modules/search/search.module b/modules/search/search.module index 111bd0155a4..f35979d7f21 100644 --- a/modules/search/search.module +++ b/modules/search/search.module @@ -250,7 +250,7 @@ function update_index($search_array) { ** false count of the number of hist, and doesn't show up ** when clicking on a node from the search interface anyway. */ - $wordlist = $node["text1"] . $node["text2"]; + $wordlist = $node["text1"] ." ". $node["text2"]; // Strip heaps of stuff out of it $wordlist = preg_replace("'<[\/\!]*?[^<>]*?>'si", "", $wordlist);