From: Ævar Arnfjörð Bjarmason Date: Fri, 21 Oct 2005 01:41:02 +0000 (+0000) Subject: * Source code formatting, spaces are cheap, use 'em X-Git-Tag: 1.6.0~1384 X-Git-Url: http://git.cyclocoop.org/%24action?a=commitdiff_plain;h=f59e55ad8b81aeb0e4cb74ebe3394ab510c42ab0;p=lhc%2Fweb%2Fwiklou.git * Source code formatting, spaces are cheap, use 'em --- diff --git a/includes/SpecialUncategorizedpages.php b/includes/SpecialUncategorizedpages.php index 5011835593..c8fd40d686 100755 --- a/includes/SpecialUncategorizedpages.php +++ b/includes/SpecialUncategorizedpages.php @@ -36,9 +36,17 @@ class UncategorizedPagesPage extends PageQueryPage { extract( $dbr->tableNames( 'page', 'categorylinks' ) ); $name = $dbr->addQuotes( $this->getName() ); - return "SELECT $name as type, page_namespace AS namespace, page_title AS title, page_title AS value " . - "FROM $page LEFT JOIN $categorylinks ON page_id=cl_from ". - "WHERE cl_from IS NULL AND page_namespace=$this->requestedNamespace AND page_is_redirect=0"; + return + " + SELECT + $name as type, + page_namespace AS namespace, + page_title AS title, + page_title AS value + FROM $page + LEFT JOIN $categorylinks ON page_id=cl_from + WHERE cl_from IS NULL AND page_namespace={$this->requestedNamespace} AND page_is_redirect=0 + "; } }