Index: trunk/phase3/includes/ChangesList.php |
— | — | @@ -505,7 +505,7 @@ |
506 | 506 | */ |
507 | 507 | function recentChangesBlockGroup( $block ) { |
508 | 508 | global $wgLang, $wgContLang, $wgRCShowChangedSize; |
509 | | - $r = '<table cellpadding="0" cellspacing="0" border="0"><tr>'; |
| 509 | + $r = '<table cellpadding="0" cellspacing="0" border="0" style="background: none"><tr>'; |
510 | 510 | |
511 | 511 | # Collate list of users |
512 | 512 | $isnew = false; |
— | — | @@ -617,7 +617,7 @@ |
618 | 618 | $r .= "</td></tr></table>\n"; |
619 | 619 | |
620 | 620 | # Sub-entries |
621 | | - $r .= '<div id="'.$rci.'" style="display:none;"><table cellpadding="0" cellspacing="0" border="0">'; |
| 621 | + $r .= '<div id="'.$rci.'" style="display:none;"><table cellpadding="0" cellspacing="0" border="0" style="background: none">'; |
622 | 622 | foreach( $block as $rcObj ) { |
623 | 623 | # Get rc_xxxx variables |
624 | 624 | // FIXME: Would be good to replace this extract() call with something that explicitly initializes local variables. |
— | — | @@ -756,7 +756,7 @@ |
757 | 757 | extract( $rcObj->mAttribs ); |
758 | 758 | $curIdEq = 'curid='.$rc_cur_id; |
759 | 759 | |
760 | | - $r = '<table cellspacing="0" cellpadding="0" border="0"><tr>'; |
| 760 | + $r = '<table cellspacing="0" cellpadding="0" border="0" style="background: none"><tr>'; |
761 | 761 | |
762 | 762 | $r .= '<td valign="top" style="white-space: nowrap"><tt>' . $this->spacerArrow() . ' '; |
763 | 763 | |