Changeset 54474
- Timestamp:
- 10/11/2022 10:27:00 AM (2 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/formatting.php
r54254 r54474 2330 2330 '%e2%80%ae', // Right-to-left override. 2331 2331 '%ef%bb%bf', // Byte order mark. 2332 '%ef%bf%bc', // Object replacement character. 2332 2333 ), 2333 2334 '', -
trunk/tests/phpunit/tests/formatting/sanitizeTitleWithDashes.php
r53562 r54474 152 152 /** 153 153 * @ticket 47912 154 * @ticket 55117 154 155 * @dataProvider data_removes_non_visible_characters_without_width 155 156 * … … 180 181 'only %e2%80%ae' => array( '%e2%80%ae' ), 181 182 'only %ef%bb%bf' => array( '%ef%bb%bf' ), 183 'only %ef%bf%bc' => array( '%ef%bf%bc' ), 182 184 183 185 // Non-visible characters within the title. … … 203 205 /** 204 206 * @ticket 47912 207 * @ticket 55117 205 208 * @dataProvider data_non_visible_characters_without_width_when_not_save 206 209 * … … 231 234 'only %e2%80%ae' => array( '%e2%80%ae', '%e2%80%ae' ), 232 235 'only %ef%bb%bf' => array( '%ef%bb%bf', '%ef%bb%bf' ), 236 'only %ef%bf%bc' => array( '%ef%bf%bc', '%ef%bf%bc' ), 233 237 234 238 // Non-visible characters within the title.
Note: See TracChangeset
for help on using the changeset viewer.