summaryrefslogtreecommitdiff
path: root/modules/comment.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2000-12-16 21:42:52 +0000
committerDries Buytaert <dries@buytaert.net>2000-12-16 21:42:52 +0000
commitdcfcd99c6c55ddab797c31f7a544b7c1d0d9953e (patch)
tree59884a0f3afa0de6ccaede807dcb00174fdee20a /modules/comment.module
parent62588af9cefda10fbde2a7293095613ae3e1a224 (diff)
downloadbrdo-dcfcd99c6c55ddab797c31f7a544b7c1d0d9953e.tar.gz
brdo-dcfcd99c6c55ddab797c31f7a544b7c1d0d9953e.tar.bz2
- 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.
Diffstat (limited to 'modules/comment.module')
-rw-r--r--modules/comment.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/comment.module b/modules/comment.module
index d7de2460a..be7c9a00b 100644
--- a/modules/comment.module
+++ b/modules/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") {