Index: trunk/extensions/LiquidThreads/pages/TalkpageView.php |
— | — | @@ -152,7 +152,9 @@ |
153 | 153 | |
154 | 154 | $html .= $headerRow . "\n" . Xml::tags( 'tbody', null, implode( "\n", $rows ) ); |
155 | 155 | $html = $h2_header . Xml::tags( 'table', array( 'class' => 'lqt_toc' ), $html ); |
156 | | - |
| 156 | + // wrap our output in a div for containment |
| 157 | + $html = Xml::tags( 'div', array( 'class' => 'lqt-contents-wrapper' ), $html ); |
| 158 | + |
157 | 159 | return $html; |
158 | 160 | } |
159 | 161 | |