Fix 2714 : backlink from special:whatlinkshere was hard set as 'existing'
authorAntoine Musso <hashar@users.mediawiki.org>
Sun, 11 Dec 2005 18:47:41 +0000 (18:47 +0000)
committerAntoine Musso <hashar@users.mediawiki.org>
Sun, 11 Dec 2005 18:47:41 +0000 (18:47 +0000)
includes/SpecialWhatlinkshere.php

index 4d5bfa0..087b517 100644 (file)
@@ -32,7 +32,7 @@ function wfSpecialWhatlinkshere($par = NULL) {
        $sk = $wgUser->getSkin();
        $isredir = ' (' . wfMsg( 'isredirect' ) . ")\n";
 
-       $wgOut->addHTML('&lt; '.$sk->makeKnownLinkObj($nt, '', 'redirect=no' )."<br />\n");
+       $wgOut->addHTML('&lt; '.$sk->makeLinkObj($nt, '', 'redirect=no' )."<br />\n");
 
        wfShowIndirectLinks( 0, $nt, $limit, $offset );
 }