From 739753b4c17882eca8aa45ceeb155c96a0ad6cb7 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Sat, 4 Dec 2004 05:55:02 +0000 Subject: [PATCH] Fix wrong function call in changeslist for block link --- includes/ChangesList.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/ChangesList.php b/includes/ChangesList.php index 0986209bb2..7e9807b2b9 100644 --- a/includes/ChangesList.php +++ b/includes/ChangesList.php @@ -397,7 +397,7 @@ class ChangesList { $blockLink=''; if ( ( 0 == $rc_user ) && $wgUser->isAllowed('block') ) { $blockLinkPage = Title::makeTitle( NS_SPECIAL, 'Blockip' ); - $blockLink = $this->skin->makeKnownLink( $blockLinkPage, + $blockLink = $this->skin->makeKnownLinkObj( $blockLinkPage, $message['blocklink'], 'ip='.$rc_user_text ); } -- 2.20.1