r19349 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r19348‎ | r19349 | r19350 >
Date:21:04, 16 January 2007
Author:hashar
Status:old
Tags:
Comment:
kill whitespaces
Modified paths:
  • /trunk/phase3/includes/SpecialUncategorizedimages.php (modified) (history)

Diff [purge]

Index: trunk/phase3/includes/SpecialUncategorizedimages.php
@@ -7,25 +7,25 @@
88 * @subpackage Special pages
99 * @author Rob Church <robchur@gmail.com>
1010 */
11 -
 11+
1212 class UncategorizedImagesPage extends QueryPage {
1313
1414 function getName() {
1515 return 'Uncategorizedimages';
1616 }
17 -
 17+
1818 function sortDescending() {
1919 return false;
2020 }
21 -
 21+
2222 function isExpensive() {
2323 return true;
2424 }
25 -
 25+
2626 function isSyndicated() {
2727 return false;
2828 }
29 -
 29+
3030 function getSQL() {
3131 $dbr =& wfGetDB( DB_SLAVE );
3232 list( $page, $categorylinks ) = $dbr->tableNamesN( 'page', 'categorylinks' );
@@ -36,14 +36,13 @@
3737 FROM {$page} LEFT JOIN {$categorylinks} ON page_id = cl_from
3838 WHERE cl_from IS NULL AND page_namespace = {$ns} AND page_is_redirect = 0";
3939 }
40 -
 40+
4141 function formatResult( $skin, $row ) {
4242 global $wgContLang;
4343 $title = Title::makeTitleSafe( NS_IMAGE, $row->title );
4444 $label = htmlspecialchars( $wgContLang->convert( $title->getText() ) );
4545 return $skin->makeKnownLinkObj( $title, $label );
4646 }
47 -
4847 }
4948
5049 function wfSpecialUncategorizedimages() {