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/newgroup.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/newgroup.php')
-rw-r--r-- | actions/newgroup.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/newgroup.php b/actions/newgroup.php index cbd8dfeec..67cd6b2f1 100644 --- a/actions/newgroup.php +++ b/actions/newgroup.php @@ -193,7 +193,7 @@ class NewgroupAction extends Action $group->query('COMMIT'); - common_redirect($group->homeUrl(), 307); + common_redirect($group->homeUrl(), 303); } function nicknameExists($nickname) |