From 9dff4c4a39ab1f7f0464e098c2e021bd7dc41be6 Mon Sep 17 00:00:00 2001 From: Derek Allard Date: Wed, 16 Jul 2008 17:16:18 +0000 Subject: added a note re: caching --- user_guide/libraries/output.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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);
$this->output->set_header("Pragma: no-cache"); -

$this->output->enable_profiler();

Permits you to enable/disable the Profiler, which will display benchmark and other data @@ -114,6 +113,8 @@ at the bottom of your pages for debugging and optimization purposes.

$this->output->enable_profiler(FALSE); +

$this->output->cache();

+

The CodeIgniter output library also controls caching. For more information, please see the caching documentation.

-- cgit v1.2.3-24-g4f1b