Changeset 47963 for branches/5.1/src/wp-includes/pluggable.php
- Timestamp:
- 06/10/2020 06:18:25 PM (5 years ago)
- Location:
- branches/5.1
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.1
- Property svn:mergeinfo changed
/trunk merged: 47948-47951
- Property svn:mergeinfo changed
-
branches/5.1/src/wp-includes/pluggable.php
r46490 r47963 1375 1375 */ 1376 1376 function wp_validate_redirect( $location, $default = '' ) { 1377 $location = trim( $location, " \t\n\r\0\x08\x0B");1378 // browsers will assume 'http' is your protocol, and will obey a redirect to a URL starting with '//'1379 if ( substr( $location, 0, 2 ) == '//') {1377 $location = wp_sanitize_redirect( trim( $location, " \t\n\r\0\x08\x0B" ) ); 1378 // Browsers will assume 'http' is your protocol, and will obey a redirect to a URL starting with '//'. 1379 if ( '//' === substr( $location, 0, 2 ) ) { 1380 1380 $location = 'http:' . $location; 1381 1381 }
Note: See TracChangeset
for help on using the changeset viewer.