diff --git a/docs/changelog/6.x.x.txt b/docs/changelog/6.x.x.txt index 964cf7ef9..4212b5dfe 100644 --- a/docs/changelog/6.x.x.txt +++ b/docs/changelog/6.x.x.txt @@ -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 diff --git a/lib/WebGUI/HTTP.pm b/lib/WebGUI/HTTP.pm index 31b1fb1ae..106f62b0d 100644 --- a/lib/WebGUI/HTTP.pm +++ b/lib/WebGUI/HTTP.pm @@ -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}}); }