summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/search/search.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/search/search.module b/modules/search/search.module
index b329f2688..cf52bc2d6 100644
--- a/modules/search/search.module
+++ b/modules/search/search.module
@@ -303,7 +303,7 @@ function search_simplify($text) {
$text = drupal_strtolower($text);
// Call an external processor for word handling.
- search_preprocess($text);
+ search_invoke_preprocess($text);
// Simple CJK handling
if (variable_get('overlap_cjk', TRUE)) {
@@ -390,7 +390,7 @@ function _search_index_truncate(&$text) {
/**
* Invokes hook_search_preprocess() in modules.
*/
-function search_preprocess(&$text) {
+function search_invoke_preprocess(&$text) {
foreach (module_implements('search_preprocess') as $module) {
$text = module_invoke($module, 'search_preprocess', $text);
}