search_comment
- Versions
- 6
search_comment($a1, $op)
Implementation of hook_comment().
Code
modules/search/search.module, line 654
<?php
function search_comment($a1, $op) {
switch ($op) {
// Reindex the node when comments are added or changed
case 'insert':
case 'update':
case 'delete':
case 'publish':
case 'unpublish':
search_touch_node(is_array($a1) ? $a1['nid'] : $a1->nid);
break;
}
}
?>Login or register to post comments 