Make WordPress Core


Ignore:
Timestamp:
06/10/2020 06:32:29 PM (5 years ago)
Author:
whyisjake
Message:

General: Backport several commits for release.

  • Embeds: Ensure that the title attribute is set correctly on embeds.
  • Editor: Prevent HTML decoding on by setting the proper editor context.
  • Formatting: Ensure that wp_validate_redirect() sanitizes a wider variety of characters.
  • Themes: Ensure a broken theme name is returned properly.
  • Administration: Add a new filter to extend set-screen-option.

Merges [47947-47951] to the 4.0 branch.
Props xknown, sstoqnov, vortfu, SergeyBiryukov, whyisjake.

Location:
branches/4.1
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/4.1

  • branches/4.1/src/wp-includes/pluggable.php

    r46501 r47969  
    11961196 **/
    11971197function wp_sanitize_redirect($location) {
    1198     $location = preg_replace('|[^a-z0-9-~+_.?#=&;,/:%!*\[\]()]|i', '', $location);
     1198    $location = preg_replace('|[^a-z0-9-~+_.?#=&;,/:%!*\[\]()@]|i', '', $location);
    11991199    $location = wp_kses_no_null($location);
    12001200
     
    12501250 **/
    12511251function wp_validate_redirect($location, $default = '') {
    1252     $location = trim( $location, " \t\n\r\0\x08\x0B" );
     1252    $location = wp_sanitize_redirect( trim( $location, " \t\n\r\0\x08\x0B" ) );
    12531253    // browsers will assume 'http' is your protocol, and will obey a redirect to a URL starting with '//'
    12541254    if ( substr($location, 0, 2) == '//' )
Note: See TracChangeset for help on using the changeset viewer.