Make WordPress Core


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

Grouped backports to the 4.9 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.9 branch.
Props voldemortensen, johnbillion, paulkevan, peterwilsoncc, xknown, dd32, audrasjb, martinkrcho, vortfu, davidbaumwald, tykoted, timothyblynjacobs, johnjamesjacoby, ehtis, matveb, talldanwp.

Location:
branches/4.9
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/4.9

  • branches/4.9/src/wp-includes/deprecated.php

    r41787 r54569  
    39453945    }
    39463946}
     3947
     3948/**
     3949 * Filter the SQL clauses of an attachment query to include filenames.
     3950 *
     3951 * @since 4.7.0
     3952 * @deprecated 6.0.3
     3953 * @access private
     3954 *
     3955 * @param array $clauses An array including WHERE, GROUP BY, JOIN, ORDER BY,
     3956 *                       DISTINCT, fields (SELECT), and LIMITS clauses.
     3957 * @return array The unmodified clauses.
     3958 */
     3959function _filter_query_attachment_filenames( $clauses ) {
     3960    _deprecated_function( __FUNCTION__, '6.0.3', 'add_filter( "wp_allow_query_attachment_by_filename", "__return_true" )');
     3961    remove_filter( 'posts_clauses', __FUNCTION__ );
     3962    return $clauses;
     3963}
     3964
Note: See TracChangeset for help on using the changeset viewer.