From 862c761c08832828a89207c8f76494855a65394c Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Tue, 16 Jun 2015 20:07:14 +0000 Subject: [PATCH] Avoid using HTML in translation strings in `edit-form-comment.php`. Fixes #31847. git-svn-id: https://develop.svn.wordpress.org/trunk@32801 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/edit-form-comment.php | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/wp-admin/edit-form-comment.php b/src/wp-admin/edit-form-comment.php index 7aa6f44234..62cd828134 100644 --- a/src/wp-admin/edit-form-comment.php +++ b/src/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 . '' + ); ?>