* using htmlspecialchars() for safe XHTML output
[lhc/web/wiklou.git] / includes / SpecialWantedpages.php
index bf2d630..2f16efb 100644 (file)
@@ -1,48 +1,67 @@
 <?php
+/**
+ *
+ * @package MediaWiki
+ * @subpackage SpecialPage
+ */
 
-require_once ( "QueryPage.php" ) ;
+/**
+ *
+ */
+require_once ( 'QueryPage.php' ) ;
 
+/**
+ *
+ * @package MediaWiki
+ * @subpackage SpecialPage
+ */
 class WantedPagesPage extends QueryPage {
 
        function getName() {
-               return "Wantedpages";
+               return 'Wantedpages';
        }
 
        function isExpensive() {
                return true;
        }
+       function isSyndicated() { return false; }
 
        function getSQL() {
-               # We cheat and return the full-text from bl_to in the title.
-               # In the future, a pre-parsed name will be available.
+               $dbr =& wfGetDB( DB_SLAVE );
+               $pagelinks = $dbr->tableName( 'pagelinks' );
+               $page      = $dbr->tableName( 'page' );
                return
-                       "SELECT 'Wantedpages' as type,
-                               0 as namespace,
-                               bl_to as title,
-                               COUNT(DISTINCT bl_from) as value
-                       FROM brokenlinks
-                       GROUP BY bl_to
-                       HAVING value > 1";
+                       "SELECT 'Wantedpages' AS type,
+                               pl_namespace AS namespace,
+                               pl_title AS title,
+                               COUNT(*) AS value
+                        FROM $pagelinks
+                        LEFT JOIN $page
+                        ON pl_namespace=page_namespace AND pl_title=page_title
+                        WHERE page_namespace IS NULL
+                        GROUP BY pl_namespace,pl_title
+                        HAVING COUNT(*) > 1";
        }
 
        function formatResult( $skin, $result ) {
-               global $wgLang;
+               global $wgContLang;
 
-               $nt = Title::newFromDBkey( $result->title );
-               if( is_null( $nt ) ) {
-                       return "<!-- Bad title '" . htmlspecialchars( $result->title ) . "' -->";
-               }
-               $plink = $skin->makeBrokenLink( $nt->getPrefixedText(), "" );
+               $nt = Title::makeTitle( $result->namespace, $result->title );
+               $text = $wgContLang->convert( $nt->getPrefixedText() );
+               $plink = $skin->makeBrokenLink( $nt->getPrefixedText(), $text );
+               
                $nl = wfMsg( "nlinks", $result->value );
-               $nlink = $skin->makeKnownLink( $wgLang->specialPage( "Whatlinkshere" ), $nl,
+               $nlink = $skin->makeKnownLink( $wgContLang->specialPage( "Whatlinkshere" ), $nl,
                  "target=" . $nt->getPrefixedURL() );
 
                return "{$plink} ({$nlink})";
        }
 }
 
-function wfSpecialWantedpages()
-{
+/**
+ * constructor
+ */
+function wfSpecialWantedpages() {
        list( $limit, $offset ) = wfCheckLimits();
 
        $wpp = new WantedPagesPage();