diff options
author | Anika Henke <anika@selfthinker.org> | 2012-04-08 16:28:39 +0100 |
---|---|---|
committer | Anika Henke <anika@selfthinker.org> | 2012-04-08 16:28:39 +0100 |
commit | 940db3a35fd0feb1f5540a789e79c4a3e192c115 (patch) | |
tree | 6b168bc90680b873f2cf53aaaba84e335b3e0b20 /inc/parser/xhtml.php | |
parent | 16cc7ed7a97c7525c006a0355bd0c1277c256cab (diff) | |
download | rpg-940db3a35fd0feb1f5540a789e79c4a3e192c115.tar.gz rpg-940db3a35fd0feb1f5540a789e79c4a3e192c115.tar.bz2 |
use abbr instead of deprecated acronym
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 69060a3b4..157d0d76a 100644 --- a/inc/parser/xhtml.php +++ b/inc/parser/xhtml.php @@ -471,8 +471,8 @@ class Doku_Renderer_xhtml extends Doku_Renderer { $title = $this->_xmlEntities($this->acronyms[$acronym]); - $this->doc .= '<acronym title="'.$title - .'">'.$this->_xmlEntities($acronym).'</acronym>'; + $this->doc .= '<abbr title="'.$title + .'">'.$this->_xmlEntities($acronym).'</abbr>'; } else { $this->doc .= $this->_xmlEntities($acronym); |