From 69e546c19c017cd268ede1ed1fc679394b37357b Mon Sep 17 00:00:00 2001 From: Antoine Musso Date: Sun, 11 Dec 2005 18:47:41 +0000 Subject: [PATCH] Fix 2714 : backlink from special:whatlinkshere was hard set as 'existing' --- includes/SpecialWhatlinkshere.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/SpecialWhatlinkshere.php b/includes/SpecialWhatlinkshere.php index 4d5bfa0564..087b517ceb 100644 --- a/includes/SpecialWhatlinkshere.php +++ b/includes/SpecialWhatlinkshere.php @@ -32,7 +32,7 @@ function wfSpecialWhatlinkshere($par = NULL) { $sk = $wgUser->getSkin(); $isredir = ' (' . wfMsg( 'isredirect' ) . ")\n"; - $wgOut->addHTML('< '.$sk->makeKnownLinkObj($nt, '', 'redirect=no' )."
\n"); + $wgOut->addHTML('< '.$sk->makeLinkObj($nt, '', 'redirect=no' )."
\n"); wfShowIndirectLinks( 0, $nt, $limit, $offset ); } -- 2.20.1