fixed a redirect bug

This commit is contained in:
JT Smith 2005-03-10 14:45:51 +00:00
parent 12b4c40c92
commit 6c27b879b6
2 changed files with 2 additions and 1 deletions

View file

@ -9,6 +9,7 @@
- fix [ 1152434 ] Last Reply column is blank in a forum [mwilson]
- fix [ 1158944 ] Validate email addresses?
- fix [ 1157311 ] Edit User Profile fails on Windows/Firefox
- fix [ 1160623 ] Redirect Incorrect- 6.2.11
6.5.0

View file

@ -237,7 +237,7 @@ The URL to redirect to.
sub setRedirect {
$session{http}{location} = shift;
setStatus("302", "Redirect");
WebGUI::Style::setMeta({"http-equiv"=>"refresh",content=>"0, URL=".$session{http}{location}});
WebGUI::Style::setMeta({"http-equiv"=>"refresh",content=>"0; URL=".$session{http}{location}});
}