diff options
author | Christopher Smith <chris@jalakai.co.uk> | 2014-12-01 17:02:56 +0000 |
---|---|---|
committer | Christopher Smith <chris@jalakai.co.uk> | 2014-12-01 17:02:56 +0000 |
commit | e3a24861f53db7293b2b17f05d5821871b85b2f6 (patch) | |
tree | e23a41684f6eee97e12a4a5b7c5bb396b80e86dd /inc/parser/renderer.php | |
parent | 10bcc8aaa0f8014e1c5e2d059ea674fc0063233d (diff) | |
download | rpg-e3a24861f53db7293b2b17f05d5821871b85b2f6.tar.gz rpg-e3a24861f53db7293b2b17f05d5821871b85b2f6.tar.bz2 |
Update inbuilt renderers for node/leaf state in listitem_open
- includes, xhtml renderer adding 'node' class to <li> when it contains
child list(s)
Diffstat (limited to 'inc/parser/renderer.php')
-rw-r--r-- | inc/parser/renderer.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/inc/parser/renderer.php b/inc/parser/renderer.php index 09294539e..668b617d1 100644 --- a/inc/parser/renderer.php +++ b/inc/parser/renderer.php @@ -343,8 +343,9 @@ class Doku_Renderer extends DokuWiki_Plugin { * Open a list item * * @param int $level the nesting level + * @param bool $node true when a node; false when a leaf */ - function listitem_open($level) { + function listitem_open($level,$node=false) { } /** |