From 45d5037a103f858b123de3371a50b3e9bc319a5a Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Tue, 16 Jun 2015 20:08:24 +0000 Subject: [PATCH] Avoid using HTML in translation strings in `edit-form-comment.php`. Fixes #31847. Built from https://develop.svn.wordpress.org/trunk@32801 git-svn-id: http://core.svn.wordpress.org/trunk@32772 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/edit-form-comment.php | 12 ++++++++++-- wp-includes/version.php | 2 +- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/wp-admin/edit-form-comment.php b/wp-admin/edit-form-comment.php index 7aa6f44234..62cd828134 100644 --- a/wp-admin/edit-form-comment.php +++ b/wp-admin/edit-form-comment.php @@ -112,7 +112,11 @@ if ( current_user_can( 'edit_post', $post_id ) ) { ?>
- %s' ), $post_link ); ?> + ' . $post_link . '' + ); ?>
comment_parent ) : $name = get_comment_author( $parent->comment_ID ); ?>
- %2$s' ), $parent_link, $name ); ?> + ' . $name . '' + ); ?>
diff --git a/wp-includes/version.php b/wp-includes/version.php index d40f9eb322..1db5e9ef59 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.3-alpha-32800'; +$wp_version = '4.3-alpha-32801'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.