Page MenuHomePhabricator

TableBorders.txt

Authored By
bzimport
Nov 21 2014, 10:39 PM
Size
2 KB
Referenced Files
None
Subscribers
None

TableBorders.txt

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' ) ) .
'<tr>' .
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 @@
. "<div id=\"mw-imagepage-section-filehistory\">\n"
. $wgOut->parse( wfMsgNoTrans( 'filehist-help' ) )
. $navLinks . "\n"
- . Xml::openElement( 'table', array( 'class' => 'filehistory' ) ) . "\n"
+ . Xml::openElement( 'table', array( 'class' => 'filehistory', 'border' => '1' ) ) . "\n"
. '<tr><td></td>'
. ( $this->current->isLocal() && ($wgUser->isAllowed('delete') || $wgUser->isAllowed('deleterevision') ) ? '<td></td>' : '' )
. '<th>' . wfMsgHtml( 'filehist-datetime' ) . '</th>'
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 );

File Metadata

Mime Type
text/x-diff
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
5322
Default Alt Text
TableBorders.txt (2 KB)

Event Timeline