From dcfcd99c6c55ddab797c31f7a544b7c1d0d9953e Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sat, 16 Dec 2000 21:42:52 +0000 Subject: - improved web interface of cron module. - improved web interface of account module. - added simple permission system with both administrators and regular users. It can be made more fine-grained but it will do for now. - various small enhancements to the other modules, but nothing big. --- modules/comment/comment.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/comment/comment.module') diff --git a/modules/comment/comment.module b/modules/comment/comment.module index d7de2460a..be7c9a00b 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -34,7 +34,7 @@ function comment_edit($id) { function comment_save($id, $subject, $comment) { db_query("UPDATE comments SET subject = '". check_input($subject) ."', comment = '". check_input($comment) ."' WHERE cid = $id"); - watchdog("message", "modified comment `$subject'."); + watchdog("message", "comment: modified `$subject'"); } function comment_display($order = "date") { -- cgit v1.2.3