diff options
author | rojaro <> | 2011-04-28 10:57:25 +0000 |
---|---|---|
committer | rojaro <> | 2011-04-28 10:57:25 +0000 |
commit | eb9a9e11334eb0af743537c002738799329aef2a (patch) | |
tree | bfe0c4a47cb83a33a75551e5f1ecc4c549e24b39 /framework/Web | |
parent | 2281552a3f76a3920a6443744b650656d82903c6 (diff) |
fixed #233
Diffstat (limited to 'framework/Web')
-rw-r--r-- | framework/Web/UI/THtmlWriter.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Web/UI/THtmlWriter.php b/framework/Web/UI/THtmlWriter.php index a8ac08a0..1a888508 100644 --- a/framework/Web/UI/THtmlWriter.php +++ b/framework/Web/UI/THtmlWriter.php @@ -185,7 +185,7 @@ class THtmlWriter extends TApplicationComponent implements ITextWriter */
public function flush()
{
- $this->_writer->flush();
+ return $this->_writer->flush();
}
/**
|