summaryrefslogtreecommitdiff
path: root/actions/tag.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-04-01 15:30:59 -0400
committerEvan Prodromou <evan@controlyourself.ca>2009-04-01 15:30:59 -0400
commitc172cbafaa9ba17ff8ca5c6dd07741bd0de96871 (patch)
treebc4d14b74e195e2f22e5e59d82d9ac95308a8e43 /actions/tag.php
parent88bcef127ffb5b906f4196977b64cd096126b946 (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/tag.php')
-rw-r--r--actions/tag.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/actions/tag.php b/actions/tag.php
index 231f2c299..d15f64498 100644
--- a/actions/tag.php
+++ b/actions/tag.php
@@ -33,7 +33,9 @@ class TagAction extends Action
}
if ($this->tag != $taginput) {
- common_redirect(common_local_url('tag', array('tag' => $this->tag)));
+ common_redirect(common_local_url('tag', array('tag' => $this->tag)),
+ 301);
+ return false;
}
$this->page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;