Changeset 3742
- Timestamp:
- 04/22/06 00:11:08 (2 years ago)
- Files:
-
- branches/2.0/wp-includes/functions-formatting.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/2.0/wp-includes/functions-formatting.php
r3481 r3742 998 998 ); 999 999 1000 foreach ($to_ncr as $entity => $ncr) { 1001 $text = str_replace($entity, $ncr, $text); 1002 } 1003 return $text; 1000 return str_replace( array_keys($to_ncr), array_values($to_ncr), $text ); 1004 1001 } 1005 1002
