More thorough URI sanitizer in wp_redirect().
git-svn-id: http://svn.automattic.com/wordpress/trunk@3926 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
e92ccf5685
commit
9b8a99e398
|
@ -283,7 +283,7 @@ if ( !function_exists('wp_redirect') ) :
|
|||
function wp_redirect($location) {
|
||||
global $is_IIS;
|
||||
|
||||
$location = str_replace( array("\n", "\r"), '', $location);
|
||||
$location = preg_replace('|[^a-z0-9-~+_.?#=&;,/:]|i', '', $location);
|
||||
|
||||
if ($is_IIS)
|
||||
header("Refresh: 0;url=$location");
|
||||
|
|
Loading…
Reference in New Issue