tree checksum vpatch file split hunks
all signers: hanbot billymg
antecedents: mp-wp_remove-tinymce-and-other-crud
press order:
patch:
(3 . 3)(3 . 4)
5 558370 mp-wp_update-image-references-to-svg billymg Update all internal image references to use .svg extensions
6 568792 mp-wp_html-comments-regrind hanbot Anonymous function in kses.php given variables to allow for html and other desired tags in comments compatible with PHP versions 5 and above. Also, trilema-specific database parameter for spam cleanup converted to (reground: correct) variable table name for compatibility. Spurious trilema-specific commented-out code deleted.
7 569483 mp-wp_remove-tinymce-and-other-crud billymg Remove tinymce, most of the importers, the self-update feature, and the google gears and press-this plugins
8 602064 mp-wp_apply-htmlspecialchars-to-post-edit-content billymg Run post content through htmlspecialchars() before loading into the post edit UI
- 96C9B9B0B8DA6F255E10FD47FD4053958417127524A5B8BE961E126CCE7FDE0476BD5C2B20C4580517A75B01E9751636C8DC0C6F250AB8F94DBBE8097057CF67(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