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:32:30 -0400 |
commit | 5067939e9abaa7451faa26a7246460214aafb320 (patch) | |
tree | 754effd4fd916cf59359fc182726ef11628a1df2 /actions/subscribe.php | |
parent | e3d5f965ae3241a9786cdcc3783af67029af57e9 (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/subscribe.php')
-rw-r--r-- | actions/subscribe.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/actions/subscribe.php b/actions/subscribe.php index f761992de..0bc522867 100644 --- a/actions/subscribe.php +++ b/actions/subscribe.php @@ -75,7 +75,8 @@ class SubscribeAction extends Action $this->elementEnd('html'); } else { common_redirect(common_local_url('subscriptions', array('nickname' => - $user->nickname))); + $user->nickname)), + 303); } } } |