summaryrefslogtreecommitdiff
path: root/modules/trigger
diff options
context:
space:
mode:
Diffstat (limited to 'modules/trigger')
-rw-r--r--modules/trigger/trigger.module8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/trigger/trigger.module b/modules/trigger/trigger.module
index 00e732ab4..19493066b 100644
--- a/modules/trigger/trigger.module
+++ b/modules/trigger/trigger.module
@@ -306,15 +306,15 @@ function _trigger_normalize_comment_context($type, $comment) {
/**
* Implement hook_comment_insert().
*/
-function trigger_comment_insert($form_values) {
- _trigger_comment($form_values, 'insert');
+function trigger_comment_insert($comment) {
+ _trigger_comment($comment, 'insert');
}
/**
* Implement hook_comment_update().
*/
-function trigger_comment_update($form_values) {
- _trigger_comment($form_values, 'update');
+function trigger_comment_update($comment) {
+ _trigger_comment($comment, 'update');
}
/**