kill whitespaces
authorAntoine Musso <hashar@users.mediawiki.org>
Tue, 16 Jan 2007 21:04:04 +0000 (21:04 +0000)
committerAntoine Musso <hashar@users.mediawiki.org>
Tue, 16 Jan 2007 21:04:04 +0000 (21:04 +0000)
includes/SpecialUncategorizedimages.php

index 51f695d..5cc0f65 100644 (file)
@@ -7,25 +7,25 @@
  * @subpackage Special pages
  * @author Rob Church <robchur@gmail.com>
  */
+
 class UncategorizedImagesPage extends QueryPage {
 
        function getName() {
                return 'Uncategorizedimages';
        }
-       
+
        function sortDescending() {
                return false;
        }
-       
+
        function isExpensive() {
                return true;
        }
-       
+
        function isSyndicated() {
                return false;
        }
-       
+
        function getSQL() {
                $dbr =& wfGetDB( DB_SLAVE );
                list( $page, $categorylinks ) = $dbr->tableNamesN( 'page', 'categorylinks' );
@@ -36,14 +36,13 @@ class UncategorizedImagesPage extends QueryPage {
                                FROM {$page} LEFT JOIN {$categorylinks} ON page_id = cl_from
                                WHERE cl_from IS NULL AND page_namespace = {$ns} AND page_is_redirect = 0";
        }
-       
+
        function formatResult( $skin, $row ) {
                global $wgContLang;
                $title = Title::makeTitleSafe( NS_IMAGE, $row->title );
                $label = htmlspecialchars( $wgContLang->convert( $title->getText() ) );
                return $skin->makeKnownLinkObj( $title, $label );
        }
-                               
 }
 
 function wfSpecialUncategorizedimages() {