summaryrefslogtreecommitdiff
path: root/inc/parser/xhtml.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/parser/xhtml.php')
-rw-r--r--inc/parser/xhtml.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/parser/xhtml.php b/inc/parser/xhtml.php
index 3b253bb89..dc8922ee7 100644
--- a/inc/parser/xhtml.php
+++ b/inc/parser/xhtml.php
@@ -162,7 +162,7 @@ class Doku_Renderer_xhtml extends Doku_Renderer {
}
function hr() {
- $this->doc .= '<hr noshade="noshade" size="1" />'.DOKU_LF;
+ $this->doc .= '<hr />'.DOKU_LF;
}
function strong_open() {
@@ -400,7 +400,7 @@ class Doku_Renderer_xhtml extends Doku_Renderer {
if ( array_key_exists($smiley, $this->smileys) ) {
$title = $this->_xmlEntities($this->smileys[$smiley]);
$this->doc .= '<img src="'.DOKU_BASE.'lib/images/smileys/'.$this->smileys[$smiley].
- '" align="middle" alt="'.
+ '" class="middle" alt="'.
$this->_xmlEntities($smiley).'" />';
} else {
$this->doc .= $this->_xmlEntities($smiley);