diff options
Diffstat (limited to 'modules/comment.module')
-rw-r--r-- | modules/comment.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/comment.module b/modules/comment.module index 5f4dd09fd..0a8150799 100644 --- a/modules/comment.module +++ b/modules/comment.module @@ -37,7 +37,7 @@ function comment_edit($id) { function comment_save($id, $edit) { db_query("UPDATE comments SET subject = '". check_input($edit[subject]) ."', comment = '". check_input($edit[comment]) ."' WHERE cid = '$id'"); - watchdog("message", "comment: modified '$edit[subject]'"); + watchdog("special", "comment: modified '$edit[subject]'"); } function comment_overview() { |