Make WordPress Core


Ignore:
Timestamp:
10/17/2022 05:53:02 PM (2 years ago)
Author:
SergeyBiryukov
Message:

Grouped backports to the 4.1 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,
  • Pings/trackbacks: Apply KSES to all trackbacks,
  • Comments: Apply kses when editing comments,
  • Mail: Reset PHPMailer properties between use,
  • Query: Validate relation in WP_Date_Query,
  • Widgets: Escape RSS error messages for display.

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

Location:
branches/4.1
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/4.1

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

    r30681 r54552  
    22012201        return 0;
    22022202    }
     2203
     2204    $filter_comment = false;
     2205    if ( ! has_filter( 'pre_comment_content', 'wp_filter_kses' ) ) {
     2206        $filter_comment = ! user_can( isset( $comment['user_id'] ) ? $comment['user_id'] : 0, 'unfiltered_html' );
     2207    }
     2208
     2209    if ( $filter_comment ) {
     2210        add_filter( 'pre_comment_content', 'wp_filter_kses' );
     2211    }
     2212
    22032213    // Escape data pulled from DB.
    22042214    $comment = wp_slash($comment);
     
    22102220
    22112221    $commentarr = wp_filter_comment( $commentarr );
     2222
     2223    if ( $filter_comment ) {
     2224        remove_filter( 'pre_comment_content', 'wp_filter_kses' );
     2225    }
    22122226
    22132227    // Now extract the merged array.
Note: See TracChangeset for help on using the changeset viewer.