Only backtick-escape individual HTML entities in the DocBlock for wp_kses_normalize_entities().

Props TobiasBg.
Fixes #30473.

Built from https://develop.svn.wordpress.org/trunk@30726


git-svn-id: http://core.svn.wordpress.org/trunk@30716 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Drew Jaynes 2014-12-03 11:47:23 +00:00
parent ad1f226c35
commit ad1ecf88c5
2 changed files with 2 additions and 2 deletions

View File

@ -1173,7 +1173,7 @@ function wp_kses_bad_protocol_once2( $string, $allowed_protocols ) {
* Converts and fixes HTML entities. * Converts and fixes HTML entities.
* *
* This function normalizes HTML entities. It will convert `AT&T` to the correct * 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 * @since 1.0.0
* *

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.1-beta2-30725'; $wp_version = '4.1-beta2-30726';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.