Make WordPress Core

Changeset 47949


Ignore:
Timestamp:
06/10/2020 04:44:14 PM (4 years ago)
Author:
whyisjake
Message:

Formatting: Ensure that wp_validate_redirect() sanitizes a wider variety of characters.

Props: xknow, vortfu.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/pluggable.php

    r47855 r47949  
    14131413     */
    14141414    function wp_validate_redirect( $location, $default = '' ) {
    1415         $location = trim( $location, " \t\n\r\0\x08\x0B" );
     1415        $location = wp_sanitize_redirect( trim( $location, " \t\n\r\0\x08\x0B" ) );
    14161416        // Browsers will assume 'http' is your protocol, and will obey a redirect to a URL starting with '//'.
    14171417        if ( '//' === substr( $location, 0, 2 ) ) {
Note: See TracChangeset for help on using the changeset viewer.