From d76334998db618d4633886bbcecc84658b50ab23 Mon Sep 17 00:00:00 2001 From: Derek Jones Date: Tue, 28 Sep 2010 13:14:57 -0500 Subject: fixed a bug where the Output class would send incorrect cached data for controllers implementing their own _output() methods --- user_guide/general/controllers.html | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'user_guide/general/controllers.html') diff --git a/user_guide/general/controllers.html b/user_guide/general/controllers.html index 9658df876..2020011d9 100644 --- a/user_guide/general/controllers.html +++ b/user_guide/general/controllers.html @@ -268,7 +268,16 @@ function _output($output)

Please note that your _output() function will receive the data in its finalized state. Benchmark and memory usage data will be rendered, cache files written (if you have caching enabled), and headers will be sent (if you use that feature) -before it is handed off to the _output() function. If you are using this feature the page execution timer and memory usage stats might not be perfectly accurate +before it is handed off to the _output() function.
+
+To have your controller's output cached properly, its _output() method can use:
+ +if ($this->output->cache_expiration > 0)
+{
+    $this->output->write_cache($output);
+}
+ +If you are using this feature the page execution timer and memory usage stats might not be perfectly accurate since they will not take into acccount any further processing you do. For an alternate way to control output before any of the final processing is done, please see the available methods in the Output Class.

-- cgit v1.2.3-24-g4f1b