Make WordPress Core


Ignore:
Timestamp:
10/17/2022 05:46:39 PM (3 years ago)
Author:
audrasjb
Message:

Grouped backports to the 5.8 branch.

  • Editor: Bump @wordpress packages for the 5.9 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,
  • Users: Revert use of shared objects for current user,
  • 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.8 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.8
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/5.8

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

    r50641 r54548  
    24672467    }
    24682468
     2469    $filter_comment = false;
     2470    if ( ! has_filter( 'pre_comment_content', 'wp_filter_kses' ) ) {
     2471        $filter_comment = ! user_can( isset( $comment['user_id'] ) ? $comment['user_id'] : 0, 'unfiltered_html' );
     2472    }
     2473
     2474    if ( $filter_comment ) {
     2475        add_filter( 'pre_comment_content', 'wp_filter_kses' );
     2476    }
     2477
    24692478    // Escape data pulled from DB.
    24702479    $comment = wp_slash( $comment );
     
    24762485
    24772486    $commentarr = wp_filter_comment( $commentarr );
     2487
     2488    if ( $filter_comment ) {
     2489        remove_filter( 'pre_comment_content', 'wp_filter_kses' );
     2490    }
    24782491
    24792492    // Now extract the merged array.
Note: See TracChangeset for help on using the changeset viewer.