diff options
author | Anika Henke <anika@selfthinker.org> | 2012-07-05 22:58:24 +0100 |
---|---|---|
committer | Anika Henke <anika@selfthinker.org> | 2012-07-05 22:58:24 +0100 |
commit | e260f93b6cea05bc39bbd77b9db5bdc0c2c424bf (patch) | |
tree | 1ffe80265d810942d100fe0d33d3ab542a6c735c /inc/parser | |
parent | 0644090a80cabe51bcee580999ed33913aa24699 (diff) | |
download | rpg-e260f93b6cea05bc39bbd77b9db5bdc0c2c424bf.tar.gz rpg-e260f93b6cea05bc39bbd77b9db5bdc0c2c424bf.tar.bz2 |
xml compatibility fixes (mainly entities to unicode conversions)
Diffstat (limited to 'inc/parser')
-rw-r--r-- | inc/parser/xhtml.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/parser/xhtml.php b/inc/parser/xhtml.php index 119ac3f01..2f09dbd4f 100644 --- a/inc/parser/xhtml.php +++ b/inc/parser/xhtml.php @@ -549,7 +549,7 @@ class Doku_Renderer_xhtml extends Doku_Renderer { global $ID; $name = $this->_getLinkTitle($name, $hash, $isImage); $hash = $this->_headerToLink($hash); - $title = $ID.' ↵'; + $title = $ID.' ↵'; $this->doc .= '<a href="#'.$hash.'" title="'.$title.'" class="wikilink1">'; $this->doc .= $name; $this->doc .= '</a>'; |