summaryrefslogtreecommitdiff
path: root/inc/parser/xhtml.php
diff options
context:
space:
mode:
authorAnika Henke <a.c.henke@arcor.de>2006-01-14 17:35:58 +0100
committerAnika Henke <a.c.henke@arcor.de>2006-01-14 17:35:58 +0100
commit4beabca98b78dc832f53bb31d96a2afe55bc0303 (patch)
tree459f8c676eb8974c33661d508d6b2c7551afcf15 /inc/parser/xhtml.php
parent1f5663fd497dcec9f3b58e39e54cc541cdaad23e (diff)
downloadrpg-4beabca98b78dc832f53bb31d96a2afe55bc0303.tar.gz
rpg-4beabca98b78dc832f53bb31d96a2afe55bc0303.tar.bz2
better_xhtml_compliance_1.patch
darcs-hash:20060114163558-d5083-0d8e27162de2b0bfe9783e31cf4ca45a99006dd5.gz
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);