Index: trunk/phase3/includes/SiteStats.php |
— | — | @@ -293,12 +293,11 @@ |
294 | 294 | * @return Integer |
295 | 295 | */ |
296 | 296 | public function articles() { |
297 | | - global $wgContentNamespaces; |
298 | 297 | $this->mArticles = $this->db->selectField( |
299 | 298 | 'page', |
300 | 299 | 'COUNT(*)', |
301 | 300 | array( |
302 | | - 'page_namespace' => $wgContentNamespaces, |
| 301 | + 'page_namespace' => MWNamespace::getContentNamespaces(), |
303 | 302 | 'page_is_redirect' => 0, |
304 | 303 | 'page_len > 0' |
305 | 304 | ), |