diff options
author | Anika Henke <anika@selfthinker.org> | 2009-01-17 00:35:07 +0100 |
---|---|---|
committer | Anika Henke <anika@selfthinker.org> | 2009-01-17 00:35:07 +0100 |
commit | 851f2e8900ee6ea5806f852174ea377b206be0a0 (patch) | |
tree | 6237b7e413206799b56e195ffd64cace4db85c4d /inc/parser/xhtml.php | |
parent | 365be586ad4afda0558fdc0cdbcc8641699b855a (diff) | |
download | rpg-851f2e8900ee6ea5806f852174ea377b206be0a0.tar.gz rpg-851f2e8900ee6ea5806f852174ea377b206be0a0.tar.bz2 |
makes minimum amount of headlines configurable that determines if the TOC is built (FS#1226)
darcs-hash:20090116233507-f7d6d-aaff15652d2e698a4403b3386b5b1eb6c0fa38f3.gz
Diffstat (limited to 'inc/parser/xhtml.php')
-rw-r--r-- | inc/parser/xhtml.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/inc/parser/xhtml.php b/inc/parser/xhtml.php index bad1a21de..545f48b4e 100644 --- a/inc/parser/xhtml.php +++ b/inc/parser/xhtml.php @@ -84,7 +84,8 @@ class Doku_Renderer_xhtml extends Doku_Renderer { } // Prepare the TOC - if($this->info['toc'] && is_array($this->toc) && count($this->toc) > 2){ + global $conf; + if($this->info['toc'] && is_array($this->toc) && $conf['tocminheads'] && count($this->toc) >= $conf['tocminheads']){ global $TOC; $TOC = $this->toc; } |