Changeset 30720
- Timestamp:
- 12/03/2014 08:46:31 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/kses.php
r30425 r30720 1173 1173 * Converts and fixes HTML entities. 1174 1174 * 1175 * This function normalizes HTML entities. It will convert "AT&T"to the correct1176 * "AT&T", ":" to ":", "&#XYZZY;" to "&#XYZZY;"and so on.1175 * This function normalizes HTML entities. It will convert `AT&T` to the correct 1176 * `AT&T", ":" to ":", "&#XYZZY;" to "&#XYZZY;` and so on. 1177 1177 * 1178 1178 * @since 1.0.0 … … 1219 1219 * Callback for wp_kses_normalize_entities() regular expression. 1220 1220 * 1221 * This function helps wp_kses_normalize_entities() to only accept 16-bit values1222 * and nothing more for &#number;entities.1221 * This function helps {@see wp_kses_normalize_entities()} to only accept 16-bit 1222 * values and nothing more for `&#number;` entities. 1223 1223 * 1224 1224 * @access private … … 1278 1278 * Convert all entities to their character counterparts. 1279 1279 * 1280 * This function decodes numeric HTML entities ( A and A). It doesn't do1281 * anything with other entities like ä, but we don't need them in the URL1282 * protocol whitelisting system anyway.1280 * This function decodes numeric HTML entities (`A` and `A`). 1281 * It doesn't do anything with other entities like ä, but we don't 1282 * need them in the URL protocol whitelisting system anyway. 1283 1283 * 1284 1284 * @since 1.0.0
Note: See TracChangeset
for help on using the changeset viewer.