summaryrefslogtreecommitdiff
path: root/framework/Web/Services
diff options
context:
space:
mode:
authorxue <>2006-02-08 21:56:07 +0000
committerxue <>2006-02-08 21:56:07 +0000
commitb4103f28384d4ce9b5dc8e8a1abfda378eb42db0 (patch)
treecfe53b6c3d4aae7b56789fd4feaf03b3f426e9fb /framework/Web/Services
parent1f19172f3df377ca0e88bb230d6f374ebef41b91 (diff)
Modified application lifecycles.
Diffstat (limited to 'framework/Web/Services')
-rw-r--r--framework/Web/Services/TPageService.php4
1 files changed, 1 insertions, 3 deletions
diff --git a/framework/Web/Services/TPageService.php b/framework/Web/Services/TPageService.php
index 239cf870..463f2dec 100644
--- a/framework/Web/Services/TPageService.php
+++ b/framework/Web/Services/TPageService.php
@@ -455,9 +455,7 @@ class TPageService extends TService
else
throw new THttpException(404,'pageservice_page_unknown',$this->_pagePath);
- $writer=$this->getResponse()->createHtmlWriter();
- $this->_page->run($writer);
- $writer->flush();
+ $this->_page->run($this->getResponse()->createHtmlWriter());
}
/**