(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