* (bug 17621) Special:WantedFiles has no link to Special:Whatlinkshere
authorNiklas Laxström <nikerabbit@users.mediawiki.org>
Mon, 23 Feb 2009 09:30:14 +0000 (09:30 +0000)
committerNiklas Laxström <nikerabbit@users.mediawiki.org>
Mon, 23 Feb 2009 09:30:14 +0000 (09:30 +0000)
* Use nlinks instead of nmembers in Wantedfiles (does anybody use this page?)
* Removed dead code in Wantedtemplates

RELEASE-NOTES
includes/specials/SpecialWantedfiles.php
includes/specials/SpecialWantedtemplates.php

index a668e20..a9d613f 100644 (file)
@@ -218,6 +218,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
 * (bug 14414) maintenance/updateSpecialPages.php no longer throws error with
   PostgreSQL
 * (bug 17546) Correct Tongan language native name is "lea faka-Tonga"
+* (bug 17621) Special:WantedFiles has no link to Special:Whatlinkshere
 
 == API changes in 1.15 ==
 * (bug 16858) Revamped list=deletedrevs to make listing deleted contributions
index c2731fa..4957531 100644 (file)
@@ -72,9 +72,26 @@ class WantedFilesPage extends QueryPage {
                        $skin->makeLinkObj( $nt, htmlspecialchars( $text ) ) :
                        $skin->makeBrokenLinkObj( $nt, htmlspecialchars( $text ) );
 
-               $nlinks = wfMsgExt( 'nmembers', array( 'parsemag', 'escape'),
-                       $wgLang->formatNum( $result->value ) );
-               return wfSpecialList($plink, $nlinks);
+               return wfSpecialList(
+                       $plink,
+                       $this->makeWlhLink( $nt, $skin, $result )
+               );
+       }
+
+       /**
+        * Make a "what links here" link for a given title
+        *
+        * @param Title $title Title to make the link for
+        * @param Skin $skin Skin to use
+        * @param object $result Result row
+        * @return string
+        */
+       private function makeWlhLink( $title, $skin, $result ) {
+               global $wgLang;
+               $wlh = SpecialPage::getTitleFor( 'Whatlinkshere' );
+               $label = wfMsgExt( 'nlinks', array( 'parsemag', 'escape' ),
+               $wgLang->formatNum( $result->value ) );
+               return $skin->link( $wlh, $label, array(), array( 'target' => $title->getPrefixedText() ) );
        }
 }
 
index 4010ef8..7dd9a26 100644 (file)
@@ -73,8 +73,6 @@ class WantedTemplatesPage extends QueryPage {
                        $skin->makeLinkObj( $nt, htmlspecialchars( $text ) ) :
                        $skin->makeBrokenLinkObj( $nt, htmlspecialchars( $text ) );
 
-               $nlinks = wfMsgExt( 'nmembers', array( 'parsemag', 'escape'),
-                       $wgLang->formatNum( $result->value ) );
                return wfSpecialList(
                        $plink,
                        $this->makeWlhLink( $nt, $skin, $result )