From: Antoine Musso Date: Sun, 11 Dec 2005 18:47:41 +0000 (+0000) Subject: Fix 2714 : backlink from special:whatlinkshere was hard set as 'existing' X-Git-Tag: 1.6.0~962 X-Git-Url: https://git.cyclocoop.org//%22?a=commitdiff_plain;h=69e546c19c017cd268ede1ed1fc679394b37357b;p=lhc%2Fweb%2Fwiklou.git Fix 2714 : backlink from special:whatlinkshere was hard set as 'existing' --- 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 ); }