Index: trunk/phase3/includes/revisiondelete/RevisionDelete.php |
— | — | @@ -573,8 +573,9 @@ |
574 | 574 | if ( !$this->canViewContent() ) { |
575 | 575 | $link = $date; |
576 | 576 | } else { |
| 577 | + $revdelete = SpecialPage::getTitleFor( 'Revisiondelete' ); |
577 | 578 | $link = Linker::link( |
578 | | - $this->special->getTitle(), |
| 579 | + $revdelete, |
579 | 580 | $date, array(), |
580 | 581 | array( |
581 | 582 | 'target' => $this->list->title->getPrefixedText(), |
— | — | @@ -857,8 +858,9 @@ |
858 | 859 | if( !$this->canView() ) { |
859 | 860 | $action = '<span class="history-deleted">' . wfMsgHtml('rev-deleted-event') . '</span>'; |
860 | 861 | } else { |
861 | | - $action = LogPage::actionText( $this->row->log_type, $this->row->log_action, $title, |
862 | | - $this->special->getSkin(), $paramArray, true, true ); |
| 862 | + $skin = $this->list->getUser()->getSkin(); |
| 863 | + $action = LogPage::actionText( $this->row->log_type, $this->row->log_action, |
| 864 | + $title, $skin, $paramArray, true, true ); |
863 | 865 | if( $this->row->log_deleted & LogPage::DELETED_ACTION ) |
864 | 866 | $action = '<span class="history-deleted">' . $action . '</span>'; |
865 | 867 | } |