diff options
Diffstat (limited to 'inc/parser/handler.php')
-rw-r--r-- | inc/parser/handler.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/inc/parser/handler.php b/inc/parser/handler.php index 4653cf603..dc5315fdd 100644 --- a/inc/parser/handler.php +++ b/inc/parser/handler.php @@ -11,8 +11,6 @@ class Doku_Handler { var $meta = array( 'section' => FALSE, - 'toc' => TRUE, - 'cache' => TRUE, ); var $rewriteBlocks = TRUE; @@ -115,7 +113,7 @@ class Doku_Handler { } function notoc($match, $state, $pos) { - $this->meta['toc'] = FALSE; + $this->_addCall('notoc',array(),$pos); return TRUE; } |