Send 302 on redirect. Props leflo. fixes #3166

git-svn-id: https://develop.svn.wordpress.org/trunk@4252 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2006-09-26 00:55:21 +00:00
parent bbccae9533
commit 52a2f4a6e1
1 changed files with 3 additions and 1 deletions

View File

@ -257,7 +257,7 @@ endif;
// Cookie safe redirect. Works around IIS Set-Cookie bug.
// http://support.microsoft.com/kb/q176113/
if ( !function_exists('wp_redirect') ) :
function wp_redirect($location) {
function wp_redirect($location, $status = 302) {
global $is_IIS;
$location = preg_replace('|[^a-z0-9-~+_.?#=&;,/:%]|i', '', $location);
@ -266,6 +266,8 @@ function wp_redirect($location) {
$strip = array('%0d', '%0a');
$location = str_replace($strip, '', $location);
status_header($status);
if ($is_IIS)
header("Refresh: 0;url=$location");
else