X-Git-Url: https://scripts.mit.edu/gitweb/autoinstallsdev/wordpress.git/blobdiff_plain/4feeb71a9d812a9ae371c28a3d8b442a4394ded7..607b7e02d77e7326161e8ec15639052d2040f745:/wp-admin/includes/comment.php?ds=sidebyside diff --git a/wp-admin/includes/comment.php b/wp-admin/includes/comment.php index 3037c410..87e0a25d 100644 --- a/wp-admin/includes/comment.php +++ b/wp-admin/includes/comment.php @@ -46,7 +46,7 @@ function comment_exists( $comment_author, $comment_date, $timezone = 'blog' ) { */ function edit_comment() { if ( ! current_user_can( 'edit_comment', (int) $_POST['comment_ID'] ) ) - wp_die ( __( 'You are not allowed to edit comments on this post.' ) ); + wp_die ( __( 'Sorry, you are not allowed to edit comments on this post.' ) ); if ( isset( $_POST['newcomment_author'] ) ) $_POST['comment_author'] = $_POST['newcomment_author']; @@ -102,7 +102,7 @@ function get_comment_to_edit( $id ) { $comment->comment_content = format_to_edit( $comment->comment_content ); /** - * Filter the comment content before editing. + * Filters the comment content before editing. * * @since 2.0.0 *