Changeset 3284 for trunk/wp-includes/functions-formatting.php
- Timestamp:
- 12/10/2005 07:03:22 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/functions-formatting.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions-formatting.php
r3276 r3284 996 996 function wp_richedit_pre($text) { 997 997 // Filtering a blank results in an annoying <br />\n 998 if ( empty($text) ) return '<p> </p>';998 if ( empty($text) ) return apply_filters('richedit_pre', ''); 999 999 1000 1000 $output = $text; … … 1006 1006 $output = str_replace('>', '&gt;', $output); 1007 1007 1008 return $output;1008 return apply_filters('richedit_pre', $output); 1009 1009 } 1010 1010
Note: See TracChangeset
for help on using the changeset viewer.