diff options
Diffstat (limited to 'inc/parser/xhtml.php')
-rw-r--r-- | inc/parser/xhtml.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/parser/xhtml.php b/inc/parser/xhtml.php index b1dbb6858..dad6dfb97 100644 --- a/inc/parser/xhtml.php +++ b/inc/parser/xhtml.php @@ -275,11 +275,11 @@ class Doku_Renderer_xhtml extends Doku_Renderer { } function listcontent_open() { - $this->doc .= '<span class="li">'; + $this->doc .= '<div class="li">'; } function listcontent_close() { - $this->doc .= '</span>'.DOKU_LF; + $this->doc .= '</div>'.DOKU_LF; } function unformatted($text) { |