diff options
author | henning.noren <henning.noren@gmail.com> | 2007-01-03 21:57:00 +0100 |
---|---|---|
committer | henning.noren <henning.noren@gmail.com> | 2007-01-03 21:57:00 +0100 |
commit | 44881bd0f492e789063188af34111af4b4117028 (patch) | |
tree | 5d54c53e786bbfe45a3dfe0efda26e51c6ca5fc6 /inc/parser/renderer.php | |
parent | bab4a8bd9772137a187f48beb6e61c185932b692 (diff) | |
download | rpg-44881bd0f492e789063188af34111af4b4117028.tar.gz rpg-44881bd0f492e789063188af34111af4b4117028.tar.bz2 |
tf_rename_lower.patch
Name the TRUE/FALSE-constants consistently as lowercase everywhere.
This might also be an tiny optimization in some environments.
darcs-hash:20070103205700-d2a3e-e7ec0aedb938d563f583116a2d5b17f3a3fea36c.gz
Diffstat (limited to 'inc/parser/renderer.php')
-rw-r--r-- | inc/parser/renderer.php | 8 |
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 |