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

@ -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}});
}