From a5ad473d0024c5f8e2c8f6f0c62cc6d3f3ed01ae Mon Sep 17 00:00:00 2001 From: "Drew Jaynes (DrewAPicture)" Date: Wed, 3 Dec 2014 08:48:34 +0000 Subject: [PATCH] Remove some now-unnecessary double quotes around HTML entities used in DocBlock comments. See #30473. git-svn-id: https://develop.svn.wordpress.org/trunk@30721 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/kses.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/kses.php b/src/wp-includes/kses.php index f3881fbbac..bfe7a1b762 100644 --- a/src/wp-includes/kses.php +++ b/src/wp-includes/kses.php @@ -1173,7 +1173,7 @@ function wp_kses_bad_protocol_once2( $string, $allowed_protocols ) { * Converts and fixes HTML entities. * * This function normalizes HTML entities. It will convert `AT&T` to the correct - * `AT&T", ":" to ":", "&#XYZZY;" to "&#XYZZY;` and so on. + * `AT&T, : to :, &#XYZZY; to &#XYZZY;` and so on. * * @since 1.0.0 *