Changeset 3660 for trunk/wp-includes/functions-formatting.php
- Timestamp:
- 03/29/2006 01:51:55 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions-formatting.php
r3641 r3660 102 102 $text = str_replace('<', '<', $text); 103 103 $text = str_replace('>', '>', $text); 104 if ( $quotes ) { 104 if ( 'double' === $quotes ) { 105 $text = str_replace('"', '"', $text); 106 } elseif ( $quotes ) { 105 107 $text = str_replace('"', '"', $text); 106 108 $text = str_replace("'", ''', $text);
Note: See TracChangeset
for help on using the changeset viewer.