diff --git a/wp-admin/post.php b/wp-admin/post.php index 6a125242be..6ec76cdbd5 100644 --- a/wp-admin/post.php +++ b/wp-admin/post.php @@ -167,24 +167,24 @@ case 'confirmdeletecomment': if ( !user_can_delete_post_comments($user_ID, $comment->comment_post_ID) ) die( __('You are not allowed to delete comments on this post.') ); - echo "
" . __('Caution: You are about to delete the following comment:') . "
\n"; - echo "| " . __('Author:') . " | " . $comment->comment_author . " |
| " . __('E-mail:') . " | " . $comment->comment_author_email . " |
| ". __('URL:') . " | " . $comment->comment_author_url . " |
| ". __('Comment:') . " | " . $comment->comment_content . " |
| " . __('Author:') . " | $comment->comment_author |
| " . __('E-mail:') . " | $comment->comment_author_email |
| ". __('URL:') . " | $comment->comment_author_url |
| ". __('Comment:') . " | $comment->comment_content |
" . __('Are you sure you want to do that?') . "
\n"; echo "\n"; echo "\n";