summaryrefslogtreecommitdiff
path: root/inc/parser
diff options
context:
space:
mode:
authorChristopher Smith <chris@jalakai.co.uk>2010-06-27 12:55:15 +0100
committerChristopher Smith <chris@jalakai.co.uk>2010-06-27 12:55:15 +0100
commitc5ef5f5975c46c88423b0a824f383173662eaba3 (patch)
treec1e86048fd1e073593da7199c338db387be0fd4a /inc/parser
parent13ebcbe5742a0b5014e3c70a0d521332cbdcdf79 (diff)
parent4691241902c0cfa175d06bb454e9147e25b9b21a (diff)
downloadrpg-c5ef5f5975c46c88423b0a824f383173662eaba3.tar.gz
rpg-c5ef5f5975c46c88423b0a824f383173662eaba3.tar.bz2
Merge branch 'master' of git@github.com:splitbrain/dokuwiki
Diffstat (limited to 'inc/parser')
-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 c5a8b8218..78f6d3f84 100644
--- a/inc/parser/xhtml.php
+++ b/inc/parser/xhtml.php
@@ -906,11 +906,11 @@ class Doku_Renderer_xhtml extends Doku_Renderer {
global $lang;
// initialize the row counter used for classes
$this->_counter['row_counter'] = 0;
- $this->doc .= '<table class="inline ' . $this->startSectionEdit($pos, 'table') . '">'.DOKU_LF;
+ $this->doc .= '<div class="table"><table class="inline ' . $this->startSectionEdit($pos, 'table') . '">'.DOKU_LF;
}
function table_close($pos){
- $this->doc .= '</table>'.DOKU_LF;
+ $this->doc .= '</table></div>'.DOKU_LF;
$this->finishSectionEdit($pos);
}