Changeset 51984 for trunk/src/wp-includes/formatting.php
- Timestamp:
- 11/02/2021 06:46:36 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/formatting.php
r51955 r51984 2289 2289 '%cc%84', 2290 2290 '%cc%8c', 2291 // Non-visible characters that display without a width. 2292 '%e2%80%8b', 2293 '%e2%80%8c', 2294 '%e2%80%8d', 2295 '%e2%80%8e', 2296 '%e2%80%8f', 2297 '%e2%80%aa', 2298 '%e2%80%ab', 2299 '%e2%80%ac', 2300 '%e2%80%ad', 2301 '%e2%80%ae', 2302 '%ef%bb%bf', 2291 2303 ), 2292 2304 '', 2305 $title 2306 ); 2307 2308 // Convert non-visible characters that display with a width to hyphen. 2309 $title = str_replace( 2310 array( 2311 '%e2%80%80', 2312 '%e2%80%81', 2313 '%e2%80%82', 2314 '%e2%80%83', 2315 '%e2%80%84', 2316 '%e2%80%85', 2317 '%e2%80%86', 2318 '%e2%80%87', 2319 '%e2%80%88', 2320 '%e2%80%89', 2321 '%e2%80%8a', 2322 '%e2%80%a8', 2323 '%e2%80%a9', 2324 '%e2%80%af', 2325 ), 2326 '-', 2293 2327 $title 2294 2328 );
Note: See TracChangeset
for help on using the changeset viewer.