summaryrefslogtreecommitdiff
path: root/modules/comment/comment.admin.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-09-11 01:47:14 +0000
committerDries Buytaert <dries@buytaert.net>2010-09-11 01:47:14 +0000
commitdde18582493270fadd9aefa4d5569faa9cc6f269 (patch)
tree1ac5ad0edbf7d6ea6bd6439db964f48d9da9afb2 /modules/comment/comment.admin.inc
parent8ed9f604c9f2a32ec1473fad30830c4b6d4c06d1 (diff)
downloadbrdo-dde18582493270fadd9aefa4d5569faa9cc6f269.tar.gz
brdo-dde18582493270fadd9aefa4d5569faa9cc6f269.tar.bz2
- Patch #904994 by douggreen, chx: watchdog should always use replaceable argument.
Diffstat (limited to 'modules/comment/comment.admin.inc')
-rw-r--r--modules/comment/comment.admin.inc2
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();