From: Jack Phoenix Date: Wed, 6 Jul 2011 00:01:43 +0000 (+0000) Subject: code readability is everything X-Git-Tag: 1.31.0-rc.0~29053 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/operations/?a=commitdiff_plain;h=9c7aba1602ca5689cdc39583df50e561e4436974;p=lhc%2Fweb%2Fwiklou.git code readability is everything --- diff --git a/includes/specials/SpecialWantedpages.php b/includes/specials/SpecialWantedpages.php index 925df74791..74c7014501 100644 --- a/includes/specials/SpecialWantedpages.php +++ b/includes/specials/SpecialWantedpages.php @@ -51,31 +51,39 @@ class WantedPagesPage extends WantedQueryPage { function getQueryInfo() { global $wgWantedPagesThreshold; $count = $wgWantedPagesThreshold - 1; - $query = array ( - 'tables' => array ( 'pagelinks', 'pg1' => 'page', - 'pg2' => 'page' ), - 'fields' => array ( 'pl_namespace AS namespace', - 'pl_title AS title', - 'COUNT(*) AS value' ), - 'conds' => array ( 'pg1.page_namespace IS NULL', - "pl_namespace NOT IN ( '" . NS_USER . - "', '" . NS_USER_TALK . "' )", - "pg2.page_namespace != '" . - NS_MEDIAWIKI . "'" ), - 'options' => array ( 'HAVING' => "COUNT(*) > $count", - 'GROUP BY' => 'pl_namespace, pl_title' ), - 'join_conds' => array ( - 'pg1' => array ( - 'LEFT JOIN', array ( - 'pg1.page_namespace = pl_namespace', - 'pg1.page_title = pl_title' ) ), - 'pg2' => array ( 'LEFT JOIN', - 'pg2.page_id = pl_from' ) - ) + $query = array( + 'tables' => array( + 'pagelinks', + 'pg1' => 'page', + 'pg2' => 'page' + ), + 'fields' => array( + 'pl_namespace AS namespace', + 'pl_title AS title', + 'COUNT(*) AS value' + ), + 'conds' => array( + 'pg1.page_namespace IS NULL', + "pl_namespace NOT IN ( '" . NS_USER . + "', '" . NS_USER_TALK . "' )", + "pg2.page_namespace != '" . NS_MEDIAWIKI . "'" + ), + 'options' => array( + 'HAVING' => "COUNT(*) > $count", + 'GROUP BY' => 'pl_namespace, pl_title' + ), + 'join_conds' => array( + 'pg1' => array( + 'LEFT JOIN', array( + 'pg1.page_namespace = pl_namespace', + 'pg1.page_title = pl_title' + ) + ), + 'pg2' => array( 'LEFT JOIN', 'pg2.page_id = pl_from' ) + ) ); - // Replacement WantedPages::getSQL - wfRunHooks( 'WantedPages::getQueryInfo', - array( &$this, &$query ) ); + // Replacement for the WantedPages::getSQL hook + wfRunHooks( 'WantedPages::getQueryInfo', array( &$this, &$query ) ); return $query; } }