Index: trunk/phase3/includes/specials/SpecialContributions.php |
— | — | @@ -418,7 +418,7 @@ |
419 | 419 | |
420 | 420 | function __construct( $target, $namespace = false, $year = false, $month = false, $tagFilter = false ) { |
421 | 421 | parent::__construct(); |
422 | | - foreach( explode( ' ', 'uctop diff newarticle rollbacklink diff hist rev-delundel' ) as $msg ) { |
| 422 | + foreach( explode( ' ', 'uctop diff newarticle rollbacklink diff hist rev-delundel pipe-separator' ) as $msg ) { |
423 | 423 | $this->messages[$msg] = wfMsgExt( $msg, array( 'escape') ); |
424 | 424 | } |
425 | 425 | $this->target = $target; |
— | — | @@ -559,7 +559,7 @@ |
560 | 560 | } |
561 | 561 | # Is there a visible previous revision? |
562 | 562 | if( !$rev->isDeleted(Revision::DELETED_TEXT) ) { |
563 | | - $difftext = '(' . $sk->linkKnown( |
| 563 | + $difftext = $this->messages['pipe-separator'] . $sk->linkKnown( |
564 | 564 | $page, |
565 | 565 | $this->messages['diff'], |
566 | 566 | array(), |
— | — | @@ -569,14 +569,14 @@ |
570 | 570 | ) |
571 | 571 | ) . ')'; |
572 | 572 | } else { |
573 | | - $difftext = '(' . $this->messages['diff'] . ')'; |
| 573 | + $difftext = $this->messages['pipe-separator'] . $this->messages['diff'] . ')'; |
574 | 574 | } |
575 | 575 | $histlink = '('.$sk->linkKnown( |
576 | 576 | $page, |
577 | 577 | $this->messages['hist'], |
578 | 578 | array(), |
579 | 579 | array( 'action' => 'history' ) |
580 | | - ) . ')'; |
| 580 | + ); |
581 | 581 | |
582 | 582 | $comment = $wgContLang->getDirMark() . $sk->revComment( $rev, false, true ); |
583 | 583 | $date = $wgLang->timeanddate( wfTimestamp( TS_MW, $row->rev_timestamp ), true ); |