function comment_alter_comment_alter_node_postsave in Comment Alter 7
Implements hook_comment_alter_node_postsave().
File
- ./
comment_alter.module, line 677 - Provides UI to alter nodes' parameters from comment forms.
Code
function comment_alter_comment_alter_node_postsave($node, $comment) {
if (module_exists('rules')) {
rules_invoke_event('comment_alter_node_postsave', $node, $comment);
}
}