Make WordPress Core


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

Grouped backports to the 4.0 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,
  • Widgets: Escape RSS error messages for display.

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

Location:
branches/4.0
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/4.0

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

    r29469 r54551  
    19171917        return 0;
    19181918    }
     1919
     1920    $filter_comment = false;
     1921    if ( ! has_filter( 'pre_comment_content', 'wp_filter_kses' ) ) {
     1922        $filter_comment = ! user_can( isset( $comment['user_id'] ) ? $comment['user_id'] : 0, 'unfiltered_html' );
     1923    }
     1924
     1925    if ( $filter_comment ) {
     1926        add_filter( 'pre_comment_content', 'wp_filter_kses' );
     1927    }
     1928
    19191929    // Escape data pulled from DB.
    19201930    $comment = wp_slash($comment);
     
    19261936
    19271937    $commentarr = wp_filter_comment( $commentarr );
     1938
     1939    if ( $filter_comment ) {
     1940        remove_filter( 'pre_comment_content', 'wp_filter_kses' );
     1941    }
    19281942
    19291943    // Now extract the merged array.
Note: See TracChangeset for help on using the changeset viewer.