X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fspecials%2FSpecialWantedcategories.php;h=b8c0bb28208f3b9a52f458ff58d5e6f95562df1d;hb=f4d6ccddc13dafa86f31dca0050cd7af7b76f0c1;hp=51d9af3fa195173ab6c4f6c5dd0b16e2b0d15b59;hpb=ee3945f26ba8b5e1c30a3704426235d16b1b8fa7;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/specials/SpecialWantedcategories.php b/includes/specials/SpecialWantedcategories.php index 51d9af3fa1..b8c0bb2820 100644 --- a/includes/specials/SpecialWantedcategories.php +++ b/includes/specials/SpecialWantedcategories.php @@ -38,9 +38,11 @@ class WantedCategoriesPage extends WantedQueryPage { function getQueryInfo() { return array( 'tables' => array( 'categorylinks', 'page' ), - 'fields' => array( 'namespace' => NS_CATEGORY, - 'title' => 'cl_to', - 'value' => 'COUNT(*)' ), + 'fields' => array( + 'namespace' => NS_CATEGORY, + 'title' => 'cl_to', + 'value' => 'COUNT(*)' + ), 'conds' => array( 'page_title IS NULL' ), 'options' => array( 'GROUP BY' => 'cl_to' ), 'join_conds' => array( 'page' => array( 'LEFT JOIN', @@ -73,7 +75,7 @@ class WantedCategoriesPage extends WantedQueryPage { __METHOD__ ); foreach ( $categoryRes as $row ) { - $this->currentCategoryCounts[ $row->cat_title ] = intval( $row->cat_pages ); + $this->currentCategoryCounts[$row->cat_title] = intval( $row->cat_pages ); } // Back to start for display @@ -104,8 +106,8 @@ class WantedCategoriesPage extends WantedQueryPage { } else { $plink = Linker::link( $nt, $text ); - $currentValue = isset( $this->currentCategoryCounts[ $result->title ] ) - ? $this->currentCategoryCounts[ $result->title ] + $currentValue = isset( $this->currentCategoryCounts[$result->title] ) + ? $this->currentCategoryCounts[$result->title] : 0; // If the category has been created or emptied since the list was refreshed, strike it