summaryrefslogtreecommitdiff
path: root/inc/parser/renderer.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/parser/renderer.php')
-rw-r--r--inc/parser/renderer.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/inc/parser/renderer.php b/inc/parser/renderer.php
index f9dcaab7b..90b0f8627 100644
--- a/inc/parser/renderer.php
+++ b/inc/parser/renderer.php
@@ -12,17 +12,17 @@ require_once DOKU_INC . 'inc/pluginutils.php';
class Doku_Renderer {
var $info = array(
- 'cache' => TRUE, // may the rendered result cached?
- 'toc' => TRUE, // render the TOC?
+ 'cache' => true, // may the rendered result cached?
+ 'toc' => true, // render the TOC?
);
function nocache() {
- $this->info['cache'] = FALSE;
+ $this->info['cache'] = false;
}
function notoc() {
- $this->info['toc'] = FALSE;
+ $this->info['toc'] = false;
}
//handle plugin rendering