diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/comment/comment.admin.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/comment/comment.admin.inc b/modules/comment/comment.admin.inc index 4682cfa64..14d17fadb 100644 --- a/modules/comment/comment.admin.inc +++ b/modules/comment/comment.admin.inc @@ -273,7 +273,7 @@ function comment_confirm_delete_submit($form, &$form_state) { // Delete the comment and its replies. comment_delete($comment->cid); drupal_set_message(t('The comment and all its replies have been deleted.')); - watchdog('content', t('Deleted comment @cid and its replies.', array('@cid' => $comment->cid))); + watchdog('content', 'Deleted comment @cid and its replies.', array('@cid' => $comment->cid)); // Clear the cache so an anonymous user sees that his comment was deleted. cache_clear_all(); |