diff --git a/src/wp-includes/kses.php b/src/wp-includes/kses.php
index 1e7739df91..3a11d8a69f 100644
a
|
b
|
function wp_kses_bad_protocol_once2( $string, $allowed_protocols ) { |
1777 | 1777 | * Converts and fixes HTML entities. |
1778 | 1778 | * |
1779 | 1779 | * This function normalizes HTML entities. It will convert `AT&T` to the correct |
1780 | | * `AT&T`, `:` to `:`, `&#XYZZY;` to `&#XYZZY;` and so on. |
| 1780 | * `AT&T`, `:` to `:`, `&#XYZZY;` to `&#XYZZY;` and so on. |
1781 | 1781 | * |
1782 | 1782 | * When `$context` is set to 'xml', HTML entities are converted to their code points. For |
1783 | 1783 | * example, `AT&T…&#XYZZY;` is converted to `AT&T…&#XYZZY;`. |