- 96C9B9B0B8DA6F255E10FD47FD4053958417127524A5B8BE961E126CCE7FDE0476BD5C2B20C4580517A75B01E9751636C8DC0C6F250AB8F94DBBE8097057CF67
+ 8F357ED8C80C0CA11D8F4C97243F23AE535672FD5D9C83E43DDFE14B6D1BA191B920801ED8C9AC0168E61F6E626634D0041985DE3AFC69FFE6AF6AE2FBDED7C7
mp-wp/wp-includes/formatting.php
(775 . 17)(775 . 16)
13 /**^M
14 * Acts on text which is about to be edited.^M
15 *^M
16 * Holder for the 'format_to_edit'^M
17 * filter.^M
18 * Holder for the 'format_to_edit' filter.^M
19 *^M
20 * @since 0.71^M
21 *^M
22 * @param string $content The text about to be edited.^M
23 * @return string The text after the filter (and possibly htmlspecialchars()) has been run.^M
24 * @return string The text after the filter and htmlspecialchars() has been run.^M
25 */^M
26 function format_to_edit($content) {^M
27 $content = apply_filters('format_to_edit', $content);^M
28 return $content;^M
29 return htmlspecialchars($content);^M
30 }^M
31 ^M
32 /**^M