From 480f817a7e772813c4e34535420a2690258c4c86 Mon Sep 17 00:00:00 2001 From: "Drew Jaynes (DrewAPicture)" Date: Wed, 3 Dec 2014 11:46:30 +0000 Subject: [PATCH] Only backtick-escape individual HTML entities in the DocBlock for `wp_kses_normalize_entities()`. Props TobiasBg. Fixes #30473. git-svn-id: https://develop.svn.wordpress.org/trunk@30726 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 bfe7a1b762..cd2727a484 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 *