Adapt signature of listitem_open to current DokuWiki git version

This fixes a PHP Strict standards error.
This commit is contained in:
Michael Hamann
2015-05-15 17:23:55 +02:00
parent bb3d072093
commit 40ce1ade4f

View File

@ -236,7 +236,7 @@ class renderer_plugin_edittable_inverse extends Doku_Renderer {
}
}
function listitem_open($level) {
function listitem_open($level, $node = false) {
$this->block();
$this->doc .= str_repeat(' ', $level * 2).end($this->_liststack).' ';
}