Make WordPress Core


Ignore:
Timestamp:
10/17/2022 06:08:39 PM (2 years ago)
Author:
SergeyBiryukov
Message:

Grouped backports to the 4.7 branch.

  • Posts, Post types: Apply KSES to post-by-email content,
  • General: Validate host on "Are you sure?" screen,
  • Posts, Post types: Remove emails from post-by-email logs,
  • Media: Refactor search by filename within the admin,
  • Pings/trackbacks: Apply KSES to all trackbacks,
  • Comments: Apply kses when editing comments,
  • Customize: Escape blogname option in underscores templates,
  • REST API: Lockdown post parameter of the terms endpoint,
  • Mail: Reset PHPMailer properties between use,
  • Query: Validate relation in WP_Date_Query,
  • Widgets: Escape RSS error messages for display.

Merges [54521], [54522], [54523], [54524], [54525], [54526], [54527], [54528], [54529], [54530], [54541] to the 4.7 branch.
Props voldemortensen, johnbillion, paulkevan, peterwilsoncc, xknown, dd32, audrasjb, martinkrcho, vortfu, davidbaumwald, tykoted, timothyblynjacobs, johnjamesjacoby, ehtis, matveb, talldanwp.

Location:
branches/4.7
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/4.7

  • branches/4.7/src/wp-includes/comment.php

    r44847 r54566  
    21472147    }
    21482148
     2149    $filter_comment = false;
     2150    if ( ! has_filter( 'pre_comment_content', 'wp_filter_kses' ) ) {
     2151        $filter_comment = ! user_can( isset( $comment['user_id'] ) ? $comment['user_id'] : 0, 'unfiltered_html' );
     2152    }
     2153
     2154    if ( $filter_comment ) {
     2155        add_filter( 'pre_comment_content', 'wp_filter_kses' );
     2156    }
     2157
    21492158    // Escape data pulled from DB.
    21502159    $comment = wp_slash($comment);
     
    21562165
    21572166    $commentarr = wp_filter_comment( $commentarr );
     2167
     2168    if ( $filter_comment ) {
     2169        remove_filter( 'pre_comment_content', 'wp_filter_kses' );
     2170    }
    21582171
    21592172    // Now extract the merged array.
Note: See TracChangeset for help on using the changeset viewer.