diff options
author | Derek Allard <derek.allard@ellislab.com> | 2008-07-16 19:16:18 +0200 |
---|---|---|
committer | Derek Allard <derek.allard@ellislab.com> | 2008-07-16 19:16:18 +0200 |
commit | 9dff4c4a39ab1f7f0464e098c2e021bd7dc41be6 (patch) | |
tree | 5e1fb2a6edf2943e1c84e498a42804fd8a713454 | |
parent | d06876d9fbeeeabdbabf9f0d4820fc3349b59552 (diff) |
added a note re: caching
-rw-r--r-- | user_guide/libraries/output.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/user_guide/libraries/output.html b/user_guide/libraries/output.html index bcdb0c5fa..a2a87d176 100644 --- a/user_guide/libraries/output.html +++ b/user_guide/libraries/output.html @@ -99,7 +99,6 @@ $this->output->set_header("Cache-Control: no-store, no-cache, must-revalidate"); $this->output->set_header("Cache-Control: post-check=0, pre-check=0", false);<br />
$this->output->set_header("Pragma: no-cache"); </code>
-
<h2>$this->output->enable_profiler();</h2>
<p>Permits you to enable/disable the <a href="../general/profiling.html">Profiler</a>, which will display benchmark and other data
@@ -114,6 +113,8 @@ at the bottom of your pages for debugging and optimization purposes.</p> <code>$this->output->enable_profiler(FALSE);</code>
+<h2>$this->output->cache();</h2>
+<p>The CodeIgniter output library also controls caching. For more information, please see the <a href="../general/caching.html">caching documentation</a>.</p>
</div>
<!-- END CONTENT -->
|