Redirect using HTTP 303 so that form POST data is not re-submitted to the destination page

This commit is contained in:
Craig Andrews 2010-04-08 17:20:24 -04:00
parent ecf3288025
commit fc1a463b95
1 changed files with 2 additions and 2 deletions

View File

@ -71,7 +71,7 @@ class OpenidserverAction extends Action
}else{
/* Go log in, and then come back. */
common_set_returnto($_SERVER['REQUEST_URI']);
common_redirect(common_local_url('login'));
common_redirect(common_local_url('login'), 303);
return;
}
}else if(common_profile_url($user->nickname) == $request->identity || $request->idSelect()){
@ -91,7 +91,7 @@ class OpenidserverAction extends Action
$_SESSION['openid_allow_url'] = $allowResponse->encodeToUrl();
$_SESSION['openid_deny_url'] = $denyResponse->encodeToUrl();
//ask the user to trust this trust root
common_redirect(common_local_url('openidtrust'));
common_redirect(common_local_url('openidtrust'), 303);
return;
}
}else{