Changeset 40188 for branches/4.3
- Timestamp:
- 03/06/2017 01:42:01 PM (9 years ago)
- Location:
- branches/4.3
- Files:
-
- 3 edited
-
. (modified) (1 prop)
-
src/wp-includes/pluggable.php (modified) (1 diff)
-
tests/phpunit/tests/formatting/redirect.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/4.3
-
branches/4.3/src/wp-includes/pluggable.php
r37760 r40188 1301 1301 **/ 1302 1302 function wp_validate_redirect($location, $default = '') { 1303 $location = trim( $location );1303 $location = trim( $location, " \t\n\r\0\x08\x0B" ); 1304 1304 // browsers will assume 'http' is your protocol, and will obey a redirect to a URL starting with '//' 1305 1305 if ( substr($location, 0, 2) == '//' ) -
branches/4.3/tests/phpunit/tests/formatting/redirect.php
r36448 r40188 59 59 array( 'http://user:@example.com/', 'http://user:@example.com/' ), 60 60 array( 'http://user:pass@example.com/', 'http://user:pass@example.com/' ), 61 array( " \t\n\r\0\x08\x0Bhttp://example.com", 'http://example.com' ), 62 array( " \t\n\r\0\x08\x0B//example.com", 'http://example.com' ), 61 63 ); 62 64 } … … 70 72 // non-safelisted domain 71 73 array( 'http://non-safelisted.example/' ), 74 75 // non-safelisted domain (leading whitespace) 76 array( " \t\n\r\0\x08\x0Bhttp://non-safelisted.example.com" ), 77 array( " \t\n\r\0\x08\x0B//non-safelisted.example.com" ), 72 78 73 79 // unsupported schemes
Note: See TracChangeset
for help on using the changeset viewer.