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:
patch:
(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(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(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 ?>