diff options
author | xue <> | 2006-07-04 23:10:42 +0000 |
---|---|---|
committer | xue <> | 2006-07-04 23:10:42 +0000 |
commit | a957f5fb091962c05738d619ebc65a908aa397ca (patch) | |
tree | 1467fd6c01723755e7154d1a90ef4ee9fd3bea96 | |
parent | 2e473b200186161248b8c0d568c176d16bd2e590 (diff) |
Fixed #268
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | framework/Web/THttpResponse.php | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,6 +1,7 @@ Version 3.0.3 August 6, 2006
============================
BUG: Ticket#264 - Typos in some exception throw statements (Knut)
+BUG: Ticket#268 - THttpResponse.redirect() may fail for some browsers (Qiang)
BUG: TDataGrid may complain getting ItemType on a non-object if the grid is not data-bound (Qiang)
NEW: Added TStyleSheet (Wei)
diff --git a/framework/Web/THttpResponse.php b/framework/Web/THttpResponse.php index f455f48d..b6b675c1 100644 --- a/framework/Web/THttpResponse.php +++ b/framework/Web/THttpResponse.php @@ -283,7 +283,7 @@ class THttpResponse extends TModule implements ITextWriter $this->getApplication()->onEndRequest();
if($url[0]==='/')
$url=$this->getRequest()->getBaseUrl().$url;
- header('Location:'.$url);
+ header('Location: '.$url);
exit();
}
|