diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-02-11 09:04:54 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-02-11 09:04:54 +0000 |
commit | 0b0b40297ce4ab1aee9a886e9bb80a69dc24cad1 (patch) | |
tree | 045c5b2e73ca7b3471565dd65890d4f2bab63ebe /modules/node/node.module | |
parent | 2f0358b687742a28911c55a9d6fd6702c01ba71a (diff) | |
download | brdo-0b0b40297ce4ab1aee9a886e9bb80a69dc24cad1.tar.gz brdo-0b0b40297ce4ab1aee9a886e9bb80a69dc24cad1.tar.bz2 |
- Patch #710406 by jhodgdon: node_search_execute() should no longer try to call taxonomy_node_update_index() because it no longer exists.
Diffstat (limited to 'modules/node/node.module')
-rw-r--r-- | modules/node/node.module | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index 426a25b9f..536b303fb 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -1599,8 +1599,6 @@ function node_search_execute($keys = NULL) { // Fetch comments for snippet. $node->rendered .= ' ' . module_invoke('comment', 'node_update_index', $node); - // Fetch terms for snippet. - $node->rendered .= ' ' . module_invoke('taxonomy', 'node_update_index', $node); $extra = module_invoke_all('node_search_result', $node); |