Index: trunk/phase3/includes/specials/SpecialContributions.php |
— | — | @@ -712,12 +712,6 @@ |
713 | 713 | $mflag = ''; |
714 | 714 | } |
715 | 715 | |
716 | | - if ( !is_null( $rev->getSize() ) && !$rev->isDeleted( Revision::DELETED_TEXT ) ) { |
717 | | - $mSize = $this->getSkin()->formatRevisionSize( $rev->getSize() ); |
718 | | - } else { |
719 | | - $mSize = ''; |
720 | | - } |
721 | | - |
722 | 716 | // Don't show useless link to people who cannot hide revisions |
723 | 717 | $canHide = $user->isAllowed( 'deleterevision' ); |
724 | 718 | if( $canHide || ($rev->getVisibility() && $user->isAllowed('deletedhistory')) ) { |
— | — | @@ -738,7 +732,7 @@ |
739 | 733 | } |
740 | 734 | |
741 | 735 | $diffHistLinks = '(' . $difftext . $this->messages['pipe-separator'] . $histlink . ')'; |
742 | | - $ret = "{$del}{$d} {$diffHistLinks}{$chardiff}{$nflag}{$mflag} {$link}{$userlink} {$mSize} {$comment} {$topmarktext}"; |
| 736 | + $ret = "{$del}{$d} {$diffHistLinks}{$chardiff}{$nflag}{$mflag} {$link}{$userlink} {$comment} {$topmarktext}"; |
743 | 737 | |
744 | 738 | # Denote if username is redacted for this edit |
745 | 739 | if( $rev->isDeleted( Revision::DELETED_USER ) ) { |