diff options
author | Dries Buytaert <dries@buytaert.net> | 2002-11-25 15:52:04 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2002-11-25 15:52:04 +0000 |
commit | aab82c0aebb0cc2df8fd49175c5ba120877be492 (patch) | |
tree | b889c9f0d0f812db69da4b351b15e1f97620540d | |
parent | 062e7d7cbf7fb42d3e482b776ccab72225967127 (diff) | |
download | brdo-aab82c0aebb0cc2df8fd49175c5ba120877be492.tar.gz brdo-aab82c0aebb0cc2df8fd49175c5ba120877be492.tar.bz2 |
- Fixed bug in search module. Patch by Gerhard.
-rw-r--r-- | modules/search.module | 2 | ||||
-rw-r--r-- | modules/search/search.module | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/search.module b/modules/search.module index 111bd0155..f35979d7f 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 111bd0155..f35979d7f 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); |