comment about extranamespaces values that should not be >255
[lhc/web/wiklou.git] / includes / SpecialUncategorizedpages.php
index 6c374d8..2d56ce9 100755 (executable)
@@ -1,7 +1,20 @@
 <?php
-
+/**
+ *
+ * @package MediaWiki
+ * @subpackage SpecialPage
+ */
+
+/**
+ *
+ */
 require_once( "QueryPage.php" );
 
+/**
+ *
+ * @package MediaWiki
+ * @subpackage SpecialPage
+ */
 class UncategorizedPagesPage extends PageQueryPage {
 
        function getName() {
@@ -15,17 +28,21 @@ class UncategorizedPagesPage extends PageQueryPage {
        function isExpensive() {
                return true;
        }
+       function isSyndicated() { return false; }
        
        function getSQL() {
                $dbr =& wfGetDB( DB_SLAVE );
                extract( $dbr->tableNames( 'cur', 'categorylinks' ) );
 
                return "SELECT 'Uncategorizedpages' as type, cur_namespace AS namespace, cur_title AS title, cur_title AS value " .
-                       "FROM $cur LEFT JOIN $categorylinks ON cur_id=cl_to ".
-                       "WHERE cl_to IS NULL AND cur_namespace=0 AND cur_is_redirect=0";
+                       "FROM $cur LEFT JOIN $categorylinks ON cur_id=cl_from ".
+                       "WHERE cl_from IS NULL AND cur_namespace=0 AND cur_is_redirect=0";
        }
 }
 
+/**
+ * constructor
+ */
 function wfSpecialUncategorizedpages() {
        list( $limit, $offset ) = wfCheckLimits();