From 513df4bf9ed98366a0105393a1a9f12ef7ed87e7 Mon Sep 17 00:00:00 2001 From: Rotem Liss Date: Wed, 5 Jul 2006 19:50:50 +0000 Subject: [PATCH] If we have user tool links even in the page history, we should have it also in the deleted history. --- includes/SpecialUndelete.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/SpecialUndelete.php b/includes/SpecialUndelete.php index 72262f8ab0..695c8c2934 100644 --- a/includes/SpecialUndelete.php +++ b/includes/SpecialUndelete.php @@ -658,7 +658,7 @@ class UndeleteForm { $checkBox = ''; $pageLink = $wgLang->timeanddate( $ts, true ); } - $userLink = $sk->userLink( $row->ar_user, $row->ar_user_text ); + $userLink = $sk->userLink( $row->ar_user, $row->ar_user_text ) . $sk->userToolLinks( $row->ar_user, $row->ar_user_text ); $comment = $sk->commentBlock( $row->ar_comment ); $wgOut->addHTML( "
  • $checkBox $pageLink . . $userLink $comment
  • \n" ); @@ -686,7 +686,7 @@ class UndeleteForm { $checkBox = ''; $pageLink = $wgLang->timeanddate( $ts, true ); } - $userLink = $sk->userLink( $row->fa_user, $row->fa_user_text ); + $userLink = $sk->userLink( $row->fa_user, $row->fa_user_text ) . $sk->userToolLinks( $row->fa_user, $row->fa_user_text ); $data = wfMsgHtml( 'widthheight', $wgLang->formatNum( $row->fa_width ), -- 2.20.1