From 800f43ebbe258f967226a370b5cedaeaf3a423e8 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 19 Aug 2020 02:27:08 +0000 Subject: [PATCH] Comments: Correct punctuation in "Your comment is awaiting moderation" string in `Walker_Comment`. Props llizard. See #49867. Built from https://develop.svn.wordpress.org/trunk@48824 git-svn-id: http://core.svn.wordpress.org/trunk@48586 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-walker-comment.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/class-walker-comment.php b/wp-includes/class-walker-comment.php index eac430112e..92115714ad 100644 --- a/wp-includes/class-walker-comment.php +++ b/wp-includes/class-walker-comment.php @@ -301,7 +301,7 @@ class Walker_Comment extends Walker { if ( $commenter['comment_author_email'] ) { $moderation_note = __( 'Your comment is awaiting moderation.' ); } else { - $moderation_note = __( 'Your comment is awaiting moderation. This is a preview, your comment will be visible after it has been approved.' ); + $moderation_note = __( 'Your comment is awaiting moderation. This is a preview; your comment will be visible after it has been approved.' ); } ?> < has_children ? 'parent' : '', $comment ); ?> id="comment-"> @@ -399,7 +399,7 @@ class Walker_Comment extends Walker { if ( $commenter['comment_author_email'] ) { $moderation_note = __( 'Your comment is awaiting moderation.' ); } else { - $moderation_note = __( 'Your comment is awaiting moderation. This is a preview, your comment will be visible after it has been approved.' ); + $moderation_note = __( 'Your comment is awaiting moderation. This is a preview; your comment will be visible after it has been approved.' ); } ?> < id="comment-" has_children ? 'parent' : '', $comment ); ?>> diff --git a/wp-includes/version.php b/wp-includes/version.php index 7d6aeaebde..8d08e645fa 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.6-alpha-48823'; +$wp_version = '5.6-alpha-48824'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.