Index: trunk/phase3/includes/specials/SpecialContributions.php |
— | — | @@ -641,6 +641,13 @@ |
642 | 642 | array( 'action' => 'history' ) |
643 | 643 | ); |
644 | 644 | |
| 645 | + if ( isset( $this->mParentLens[$row->rev_parent_id] ) ) { |
| 646 | + $chardiff = ' . . ' . ChangesList::showCharacterDifference( |
| 647 | + $this->mParentLens[$row->rev_parent_id], $row->rev_len ) . ' . . '; |
| 648 | + } else { |
| 649 | + $chardiff = ''; |
| 650 | + } |
| 651 | + |
645 | 652 | $comment = $this->getLang()->getDirMark() . Linker::revComment( $rev, false, true ); |
646 | 653 | $date = $this->getLang()->timeanddate( wfTimestamp( TS_MW, $row->rev_timestamp ), true ); |
647 | 654 | if( $rev->userCan( Revision::DELETED_TEXT ) ) { |