Index: trunk/extensions/ArticleFeedback/SpecialArticleFeedback.php |
— | — | @@ -53,9 +53,7 @@ |
54 | 54 | foreach ( $rows as $row ) { |
55 | 55 | $table .= Html::openElement( 'tr' ); |
56 | 56 | foreach ( $row as $column ) { |
57 | | - $table .= Html::openElement( 'td' ); |
58 | | - $table .= $column; |
59 | | - $table .= Html::closeElement( 'td' ); |
| 57 | + $table .= Html::rawElement( 'td', array(), $column ); |
60 | 58 | } |
61 | 59 | $table .= Html::closeElement( 'tr' ); |
62 | 60 | } |