From: Antoine Musso Date: Tue, 16 Jan 2007 21:04:04 +0000 (+0000) Subject: kill whitespaces X-Git-Tag: 1.31.0-rc.0~54357 X-Git-Url: http://git.cyclocoop.org/%22%20.%20generer_url_ecrire%28%22messagerie%22%29%20.%20%22?a=commitdiff_plain;h=0de3e093adb3b2413f633c80fbfb868f5cce27e5;p=lhc%2Fweb%2Fwiklou.git kill whitespaces --- 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() {