diff options
author | Adrian Lang <lang@cosmocode.de> | 2010-07-01 16:11:22 +0200 |
---|---|---|
committer | Adrian Lang <lang@cosmocode.de> | 2010-07-01 16:12:53 +0200 |
commit | 138cf4d45bdc87d14db5c07e22685c0482085c1f (patch) | |
tree | e944617e04a54f3c93b81baf1644bf66713bcd58 /inc/parser/xhtml.php | |
parent | 9708106bad6f238d9aeaccc35258350a66604a6c (diff) | |
download | rpg-138cf4d45bdc87d14db5c07e22685c0482085c1f.tar.gz rpg-138cf4d45bdc87d14db5c07e22685c0482085c1f.tar.bz2 |
Fix table edit marker class element in XHTML
Diffstat (limited to 'inc/parser/xhtml.php')
-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 78f6d3f84..5a3d945d1 100644 --- a/inc/parser/xhtml.php +++ b/inc/parser/xhtml.php @@ -906,7 +906,7 @@ class Doku_Renderer_xhtml extends Doku_Renderer { global $lang; // initialize the row counter used for classes $this->_counter['row_counter'] = 0; - $this->doc .= '<div class="table"><table class="inline ' . $this->startSectionEdit($pos, 'table') . '">'.DOKU_LF; + $this->doc .= '<div class="table ' . $this->startSectionEdit($pos, 'table') . '"><table class="inline">'.DOKU_LF; } function table_close($pos){ |