Make WordPress Core


Ignore:
Timestamp:
10/17/2022 06:03:55 PM (18 months ago)
Author:
audrasjb
Message:

Grouped backports to the 5.3 branch.

  • Editor: Bump @wordpress packages for the branch,
  • Media: Refactor search by filename within the admin,
  • REST API: Lockdown post parameter of the terms endpoint,
  • Customize: Escape blogname option in underscores templates,
  • Query: Validate relation in WP_Date_Query,
  • 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,
  • Mail: Reset PHPMailer properties between use,
  • Comments: Apply kses when editing comments,
  • Widgets: Escape RSS error messages for display.

Merges [54521-54530] to the 5.3 branch.
Props audrasjb, costdev, cu121, dd32, davidbaumwald, ehtis, johnbillion, johnjamesjacoby, martinkrcho, matveb, oztaser, paulkevan, peterwilsoncc, ravipatel, SergeyBiryukov, talldanwp, timothyblynjacobs, tykoted, voldemortensen, vortfu, xknown.

Location:
branches/5.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/5.3

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

    r47916 r54562  
    23322332    }
    23332333
     2334    $filter_comment = false;
     2335    if ( ! has_filter( 'pre_comment_content', 'wp_filter_kses' ) ) {
     2336        $filter_comment = ! user_can( isset( $comment['user_id'] ) ? $comment['user_id'] : 0, 'unfiltered_html' );
     2337    }
     2338
     2339    if ( $filter_comment ) {
     2340        add_filter( 'pre_comment_content', 'wp_filter_kses' );
     2341    }
     2342
    23342343    // Escape data pulled from DB.
    23352344    $comment = wp_slash( $comment );
     
    23412350
    23422351    $commentarr = wp_filter_comment( $commentarr );
     2352
     2353    if ( $filter_comment ) {
     2354        remove_filter( 'pre_comment_content', 'wp_filter_kses' );
     2355    }
    23432356
    23442357    // Now extract the merged array.
Note: See TracChangeset for help on using the changeset viewer.