API: added query parameter indexpageids to list the page ids of all returned page...
[lhc/web/wiklou.git] / includes / SpecialUnusedcategories.php
index 409f2ea..5cd3406 100644 (file)
@@ -1,17 +1,12 @@
 <?php
 /**
  *
- * @package MediaWiki
- * @subpackage SpecialPage
+ * @addtogroup SpecialPage
  */
 
-/** */
-require_once('QueryPage.php');
-
 /**
  *
- * @package MediaWiki
- * @subpackage SpecialPage
+ * @addtogroup SpecialPage
  */
 class UnusedCategoriesPage extends QueryPage {
 
@@ -25,10 +20,10 @@ class UnusedCategoriesPage extends QueryPage {
 
        function getSQL() {
                $NScat = NS_CATEGORY;
-               $dbr =& wfGetDB( DB_SLAVE );
-               extract( $dbr->tableNames( 'categorylinks','page' ));
+               $dbr = wfGetDB( DB_SLAVE );
+               list( $categorylinks, $page ) = $dbr->tableNamesN( 'categorylinks', 'page' );
                return "SELECT 'Unusedcategories' as type,
-                               {$NScat} as namespace, page_title as title, 1 as value
+                               {$NScat} as namespace, page_title as title, page_title as value
                                FROM $page
                                LEFT JOIN $categorylinks ON page_title=cl_to
                                WHERE cl_from IS NULL