summaryrefslogtreecommitdiff
path: root/framework/Web/THttpResponse.php
diff options
context:
space:
mode:
authorxue <>2006-04-29 12:58:06 +0000
committerxue <>2006-04-29 12:58:06 +0000
commit3281c0a025a645ee79bf01eac142163ec9357690 (patch)
treebf26b8533d8894b216f7b7a00a426f7ab529fb3c /framework/Web/THttpResponse.php
parentb97d6a698d80d946e3669595e8d87f0c378b3520 (diff)
Added THttpResponse::reload().
Diffstat (limited to 'framework/Web/THttpResponse.php')
-rw-r--r--framework/Web/THttpResponse.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/framework/Web/THttpResponse.php b/framework/Web/THttpResponse.php
index 261c34ed..ce4bf4b1 100644
--- a/framework/Web/THttpResponse.php
+++ b/framework/Web/THttpResponse.php
@@ -285,6 +285,16 @@ class THttpResponse extends TModule implements ITextWriter
}
/**
+ * Reloads the current page.
+ * The effect of this method call is the same as user pressing the
+ * refresh button on his browser (without post data).
+ **/
+ public function reload()
+ {
+ $this->redirect($this->getRequest()->getRequestUri());
+ }
+
+ /**
* Outputs the buffered content, sends content-type and charset header.
*/
public function flush()