Index: includes/specials/SpecialStatistics.php =================================================================== --- includes/specials/SpecialStatistics.php (revision 51444) +++ includes/specials/SpecialStatistics.php (working copy) @@ -56,7 +56,7 @@ $this->doRawOutput(); } - $text = Xml::openElement( 'table', array( 'class' => 'mw-statistics-table' ) ); + $text = Xml::openElement( 'table', array( 'class' => 'mw-statistics-table' , 'border' => '1' ) ); # Statistic - pages $text .= $this->getPageStats(); Index: includes/specials/SpecialListgrouprights.php =================================================================== --- includes/specials/SpecialListgrouprights.php (revision 51444) +++ includes/specials/SpecialListgrouprights.php (working copy) @@ -33,7 +33,7 @@ $this->outputHeader(); $wgOut->addHTML( - Xml::openElement( 'table', array( 'class' => 'mw-listgrouprights-table' ) ) . + Xml::openElement( 'table', array( 'class' => 'mw-listgrouprights-table', 'border' => '1' ) ) . '' . Xml::element( 'th', null, wfMsg( 'listgrouprights-group' ) ) . Xml::element( 'th', null, wfMsg( 'listgrouprights-rights' ) ) . Index: includes/specials/SpecialTags.php =================================================================== --- includes/specials/SpecialTags.php (revision 51444) +++ includes/specials/SpecialTags.php (working copy) @@ -36,7 +36,7 @@ $html .= $this->doTagRow( $tag, 0 ); } - $wgOut->addHTML( Xml::tags( 'table', array( 'class' => 'mw-tags-table' ), $html ) ); + $wgOut->addHTML( Xml::tags( 'table', array( 'class' => 'mw-tags-table', 'border' => '1' ), $html ) ); } function doTagRow( $tag, $hitcount ) { Index: includes/ImagePage.php =================================================================== --- includes/ImagePage.php (revision 51444) +++ includes/ImagePage.php (working copy) @@ -772,7 +772,7 @@ . "
\n" . $wgOut->parse( wfMsgNoTrans( 'filehist-help' ) ) . $navLinks . "\n" - . Xml::openElement( 'table', array( 'class' => 'filehistory' ) ) . "\n" + . Xml::openElement( 'table', array( 'class' => 'filehistory', 'border' => '1' ) ) . "\n" . '' . ( $this->current->isLocal() && ($wgUser->isAllowed('delete') || $wgUser->isAllowed('deleterevision') ) ? '' : '' ) . '' . wfMsgHtml( 'filehist-datetime' ) . '' Index: includes/ImageGallery.php =================================================================== --- includes/ImageGallery.php (revision 51444) +++ includes/ImageGallery.php (working copy) @@ -225,6 +225,7 @@ $attribs = Sanitizer::mergeAttributes( array( 'class' => 'gallery', + 'border' => '1', 'cellspacing' => '0', 'cellpadding' => '0' ), $this->mAttribs );