diff options
author | Anika Henke <a.c.henke@arcor.de> | 2006-01-15 19:32:53 +0100 |
---|---|---|
committer | Anika Henke <a.c.henke@arcor.de> | 2006-01-15 19:32:53 +0100 |
commit | 96331712eb165972845b097644336ca87a81dfcd (patch) | |
tree | 53628f5709ca9b23719f30fb8b7309aef4842da0 /inc/parser | |
parent | 704bbeb05ed1e55a225fc324a5fefcf598ba1476 (diff) | |
download | rpg-96331712eb165972845b097644336ca87a81dfcd.tar.gz rpg-96331712eb165972845b097644336ca87a81dfcd.tar.bz2 |
stricter xhtml compliance -- part 2
darcs-hash:20060115183253-d5083-a343b935336bee053b99d75c7e3e72a296eb0099.gz
Diffstat (limited to 'inc/parser')
-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 dc8922ee7..d03939542 100644 --- a/inc/parser/xhtml.php +++ b/inc/parser/xhtml.php @@ -346,11 +346,11 @@ class Doku_Renderer_xhtml extends Doku_Renderer { } function quote_open() { - $this->doc .= '<blockquote>'.DOKU_LF; + $this->doc .= '<blockquote><div class="no">'.DOKU_LF; } function quote_close() { - $this->doc .= '</blockquote>'.DOKU_LF; + $this->doc .= '</div></blockquote>'.DOKU_LF; } /** |