Changeset 18465
- Timestamp:
- 07/25/2011 01:20:07 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/formatting.php
r18456 r18465 1877 1877 function ent2ncr($text) { 1878 1878 1879 if( null !== $filtered = apply_filters( 'pre_ent2ncr', null, $text ) ) 1879 // Allow a plugin to short-circuit and override the mappings. 1880 $filtered = apply_filters( 'pre_ent2ncr', null, $text ); 1881 if( null !== $filtered ) 1880 1882 return $filtered; 1881 1883
Note: See TracChangeset
for help on using the changeset viewer.