Make WordPress Core

Changeset 40183 for trunk/src


Ignore:
Timestamp:
03/06/2017 01:37:43 PM (8 years ago)
Author:
aaroncampbell
Message:

Strip control characters before validating redirect.

File:
1 edited

Legend:

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

    r39691 r40183  
    12941294 **/
    12951295function wp_validate_redirect($location, $default = '') {
    1296     $location = trim( $location );
     1296    $location = trim( $location, " \t\n\r\0\x08\x0B" );
    12971297    // browsers will assume 'http' is your protocol, and will obey a redirect to a URL starting with '//'
    12981298    if ( substr($location, 0, 2) == '//' )
Note: See TracChangeset for help on using the changeset viewer.