diff --git a/syntax.php b/syntax.php index 4629040..9377584 100644 --- a/syntax.php +++ b/syntax.php @@ -83,7 +83,8 @@ public function render($mode, Doku_Renderer $renderer, $data) { global $lang; if($mode == 'xhtml') { - $disablecache = null; + $disablecache = true; + if($disablecache) $renderer->info['cache'] = false; $namespaceinput = $this->_htmlNamespaceInput($data['namespace'], $disablecache); if($namespaceinput === false) { if($this->getConf('addpage_hideACL')) { @@ -93,7 +94,6 @@ public function render($mode, Doku_Renderer $renderer, $data) { } return true; } - if($disablecache) $renderer->info['cache'] = false; $newpagetemplateinput = $this->_htmlTemplateInput($data['newpagetemplates']);