tree checksum vpatch file split hunks

all signers: hanbot billymg diana_coman

antecedents: mp-wp_update-image-references-to-svg mp-wp_genesis mp-wp_apply-htmlspecialchars-to-post-edit-content

press order:

mp-wp_genesishanbot
mp-wp_add-footnotes-and-textselectionjsbillymg hanbot
mp-wp_update-image-references-to-svgbillymg hanbot
mp-wp_html-comments-regrindhanbot
mp-wp_remove-tinymce-and-other-crudbillymg
mp-wp_apply-htmlspecialchars-to-post-edit-contentbillymg
mp-wp_comments_filteringdiana_coman

patch:

- 6D47BBC24996DBF2A24BF6D91ABF6AB3DE3B2AEF33884BF3E583A784BB3BC5D16F6D9C2F1C308C576C319A0A520B62A4432AB13F858C5DAE9AC253BA7628B2D3
+ 4AD5C0B7EDA9C670F311A23DA92114AB10BF30B9990B46882047AEA3AB569395F643CB4AA6144EE0BA74B9821DF1E69B26D299C1F0E9C11631A78C46F95913BD
mp-wp/manifest
(4 . 3)(4 . 4)
5 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.
6 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
7 602064 mp-wp_apply-htmlspecialchars-to-post-edit-content billymg Run post content through htmlspecialchars() before loading into the post edit UI
8 605926 mp-wp_comments_filtering diana_coman Recent comments widget should show only people's comments (no track/pingbacks); theme default changed to show trackbacks/pingbacks as last/at the bottom in an article's comments list.
- 93F30C1E6E23C73675CEA9A757B592E191C7B28AA732F41D8AF05A9C18FBE0A43A8F568DCC86E7CE4241039C73A175766961AD8F985E01BDD814DF3E7239D994
+ ADCFD6C531A167DFF6CB159AF47F52FC12C3B7FB21B1EA12F2182E35EE5ADB079441A026549B0F0042F4E1FAB53F1664B3CDD359B697BFF33570C6847BCE1E7C
mp-wp/wp-content/themes/default/comments.php
(26 . 7)(26 . 8)
13 </div>
14
15 <ol class="commentlist">
16 <?php wp_list_comments(); ?>
17 <?php wp_list_comments('type=comment'); ?>
18 <?php wp_list_comments('type=pings'); ?>
19 </ol>
20
21 <div class="navigation">
- 0717C21452BC478777C206C55B58D8F8FBE5E4D9C6F3C9382AC082BDFF6662412D082D0EAAB0F9F937004E0BF3B4D540DBF921DD22E1E1B4D05B52E2D8D66A0D
+ AAF95AE9FED522EF1163401CA36CEB5DA98707E5DB79498C9FE64A3C1CA17421837F9F0BC00C132EEE1D059D35E921A9840A141E19ADA93401FEBC9E3043B132
mp-wp/wp-includes/widgets.php
(1389 . 7)(1389 . 7)
26 $number = 15;
27
28 if ( !$comments = wp_cache_get( 'recent_comments', 'widget' ) ) {
29 $comments = $wpdb->get_results("SELECT * FROM $wpdb->comments WHERE comment_approved = '1' ORDER BY comment_date_gmt DESC LIMIT $number");
30 $comments = $wpdb->get_results("SELECT * FROM $wpdb->comments WHERE comment_approved = '1' and comment_type = '' ORDER BY comment_date_gmt DESC LIMIT $number");
31 wp_cache_add( 'recent_comments', $comments, 'widget' );
32 }
33 ?>