Make WordPress Core


Ignore:
Timestamp:
10/17/2022 05:56:34 PM (2 years ago)
Author:
audrasjb
Message:

Grouped backports to the 5.6 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.6 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.6
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/5.6

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

    r49597 r54555  
    41364136    return is_string( $value ) ? addslashes( $value ) : $value;
    41374137}
     4138
     4139/**
     4140 * Filter the SQL clauses of an attachment query to include filenames.
     4141 *
     4142 * @since 4.7.0
     4143 * @deprecated 6.0.3
     4144 * @access private
     4145 *
     4146 * @param array $clauses An array including WHERE, GROUP BY, JOIN, ORDER BY,
     4147 *                       DISTINCT, fields (SELECT), and LIMITS clauses.
     4148 * @return array The unmodified clauses.
     4149 */
     4150function _filter_query_attachment_filenames( $clauses ) {
     4151    _deprecated_function( __FUNCTION__, '6.0.3', 'add_filter( "wp_allow_query_attachment_by_filename", "__return_true" )');
     4152    remove_filter( 'posts_clauses', __FUNCTION__ );
     4153    return $clauses;
     4154}
     4155
Note: See TracChangeset for help on using the changeset viewer.