diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2004-10-14 15:28:24 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2004-10-14 15:28:24 +0000 |
commit | 9e4399aae82b43bd49c0a1558174ad494b6fbcdc (patch) | |
tree | df3109d21616960c948d904f57faffca599b44ce /modules/comment/comment.module | |
parent | 63061bd7455ae24291504e8fbec5d87f18ccc0a8 (diff) | |
download | brdo-9e4399aae82b43bd49c0a1558174ad494b6fbcdc.tar.gz brdo-9e4399aae82b43bd49c0a1558174ad494b6fbcdc.tar.bz2 |
#10677: Confirmation when deleting a block + unifying confirmation screens.
Diffstat (limited to 'modules/comment/comment.module')
-rw-r--r-- | modules/comment/comment.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/comment/comment.module b/modules/comment/comment.module index 4eed28bc7..1fa60180e 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -992,7 +992,7 @@ function comment_delete($cid) { drupal_set_message(t('Do you want to delete this comment and all its replies?')); $comment->comment = check_output($comment->comment, $comment->format); $output = theme('comment', $comment); - $output .= form_submit(t('Delete comment')); + $output .= form_submit(t('Delete')); } else { drupal_set_message(t('The comment no longer exists.')); |