diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-07-07 14:58:54 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-07-07 14:58:54 +0000 |
commit | f12fa0615245760565dbc1fb53160c29243c63e2 (patch) | |
tree | 766966d109ec21b9c828efe9e7992d904ef678c2 /modules/comment.module | |
parent | 82a51e7b7550844e4c9c7b36efa37655b6bea81f (diff) | |
download | brdo-f12fa0615245760565dbc1fb53160c29243c63e2.tar.gz brdo-f12fa0615245760565dbc1fb53160c29243c63e2.tar.bz2 |
- various small updates:
+ fixed 2 small HTML typos in meta.module
+ better watchdog messages in comment.module
+ fixed typo in block.module
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() { |