summaryrefslogtreecommitdiff
path: root/modules/node/node.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-04-29 17:48:11 +0000
committerDries Buytaert <dries@buytaert.net>2009-04-29 17:48:11 +0000
commitcce402d1cbce4ca296bb54934e350eed371ac418 (patch)
tree34b0e05d1b9f8ff8a70a0113a1a8ce80cf27491e /modules/node/node.module
parente72114736394ccfc33247b3f9093ed3f5b0f4916 (diff)
downloadbrdo-cce402d1cbce4ca296bb54934e350eed371ac418.tar.gz
brdo-cce402d1cbce4ca296bb54934e350eed371ac418.tar.bz2
- Patch #446742 by sun, dmitrig01: fixed various bugs.
Diffstat (limited to 'modules/node/node.module')
-rw-r--r--modules/node/node.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/node/node.module b/modules/node/node.module
index 8bd143d23..92a088871 100644
--- a/modules/node/node.module
+++ b/modules/node/node.module
@@ -1507,9 +1507,9 @@ function node_search($op = 'search', $keys = NULL) {
$node->body = drupal_render($node->content);
// Fetch comments for snippet.
- $node->body .= module_invoke('comment', 'node', $node, 'update_index');
+ $node->body .= module_invoke('comment', 'node_update_index', $node);
// Fetch terms for snippet.
- $node->body .= module_invoke('taxonomy', 'node', $node, 'update_index');
+ $node->body .= module_invoke('taxonomy', 'node_update_index', $node);
$extra = module_invoke_all('node_search_result', $node);