From 0de3e093adb3b2413f633c80fbfb868f5cce27e5 Mon Sep 17 00:00:00 2001 From: Antoine Musso Date: Tue, 16 Jan 2007 21:04:04 +0000 Subject: [PATCH] kill whitespaces --- includes/SpecialUncategorizedimages.php | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/includes/SpecialUncategorizedimages.php b/includes/SpecialUncategorizedimages.php index 51f695d340..5cc0f652d9 100644 --- a/includes/SpecialUncategorizedimages.php +++ b/includes/SpecialUncategorizedimages.php @@ -7,25 +7,25 @@ * @subpackage Special pages * @author Rob Church */ - + 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() { -- 2.20.1