From 20a42701f4b70f63c5918005b14aad7ecc8ea38c Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Fri, 18 Sep 2015 18:28:26 +0000 Subject: [PATCH] Don't use `` in translation strings in `edit-form-comment.php`. Props ramiy. Fixes #31853. Built from https://develop.svn.wordpress.org/trunk@34295 git-svn-id: http://core.svn.wordpress.org/trunk@34259 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/edit-form-comment.php | 9 ++++++--- wp-includes/version.php | 2 +- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/wp-admin/edit-form-comment.php b/wp-admin/edit-form-comment.php index 30f3a34cb9..a9f25a28af 100644 --- a/wp-admin/edit-form-comment.php +++ b/wp-admin/edit-form-comment.php @@ -91,10 +91,13 @@ if ( $comment->comment_post_ID > 0 ): %1$s'); -$date = date_i18n( $datef, strtotime( $comment->comment_date ) ); ?> - +' . date_i18n( $datef, strtotime( $comment->comment_date ) ) . '' +); +?>
diff --git a/wp-includes/version.php b/wp-includes/version.php index 00e9f6cf86..9729b34077 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-34294'; +$wp_version = '4.4-alpha-34295'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.