From 67320833940a6aee8c5ab54a8cb456dbd8c37bbb Mon Sep 17 00:00:00 2001 From: Steven Wittens <steven@10.no-reply.drupal.org> Date: Tue, 16 Jan 2001 18:14:15 +0000 Subject: [PATCH] Fixed bug with story-moderation-comments starting at 0 score instead of 1. --- includes/submission.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/submission.inc b/includes/submission.inc index b91d30de58f4..67c814079b9c 100644 --- a/includes/submission.inc +++ b/includes/submission.inc @@ -21,7 +21,7 @@ function submission_vote($id, $vote, $comment) { if ($comment) { watchdog("comment", "moderation: added comment with subject '$subject'"); - db_query("INSERT INTO comments (sid, author, subject, comment, hostname, timestamp) VALUES($id, $user->id, '". check_input(substr($comment, 0, 29)) ." ...', '". check_input($comment) ."', '". getenv("REMOTE_ADDR") ."', '". time() ."')"); + db_query("INSERT INTO comments (sid, author, subject, comment, hostname, timestamp, score) VALUES($id, $user->id, '". check_input(substr($comment, 0, 29)) ." ...', '". check_input($comment) ."', '". getenv("REMOTE_ADDR") ."', '". time() ."', '" . ($user->userid ? 1 : 0) . "')"); } // Update user's history record: -- GitLab