diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-04-01 15:30:59 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-04-01 15:30:59 -0400 |
commit | c172cbafaa9ba17ff8ca5c6dd07741bd0de96871 (patch) | |
tree | bc4d14b74e195e2f22e5e59d82d9ac95308a8e43 /actions/logout.php | |
parent | 88bcef127ffb5b906f4196977b64cd096126b946 (diff) |
Try to do intelligent redirect codes
After fixing the redirect code output, there are a lot of weirdnesses
with e.g. form handling. Try to add explicit redirect codes where
needed -- principly when handling a POST.
Diffstat (limited to 'actions/logout.php')
-rw-r--r-- | actions/logout.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/actions/logout.php b/actions/logout.php index 3977f90a0..b7681be38 100644 --- a/actions/logout.php +++ b/actions/logout.php @@ -46,10 +46,10 @@ require_once INSTALLDIR.'/lib/openid.php'; */ class LogoutAction extends Action { - + /** * This is read only. - * + * * @return boolean true */ function isReadOnly() @@ -59,7 +59,7 @@ class LogoutAction extends Action /** * Class handler. - * + * * @param array $args array of arguments * * @return nothing @@ -73,7 +73,7 @@ class LogoutAction extends Action common_set_user(null); common_real_login(false); // not logged in common_forgetme(); // don't log back in! - common_redirect(common_local_url('public')); + common_redirect(common_local_url('public'), 303); } } } |