Changeset 53239
- Timestamp:
- 04/21/2022 11:22:45 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/atomlib.php
r49182 r53239 389 389 } 390 390 391 function xml_escape($ string)391 function xml_escape($content) 392 392 { 393 393 return str_replace(array('&','"',"'",'<','>'), 394 394 array('&','"',''','<','>'), 395 $ string);395 $content ); 396 396 } 397 397 }
Note: See TracChangeset
for help on using the changeset viewer.