Index: trunk/phase3/includes/CategoryPage.php |
— | — | @@ -276,7 +276,7 @@ |
277 | 277 | |
278 | 278 | $res = $dbr->select( |
279 | 279 | array( 'page', 'categorylinks', 'category' ), |
280 | | - array( 'page_title', 'page_namespace', 'page_len', |
| 280 | + array( 'page_id', 'page_title', 'page_namespace', 'page_len', |
281 | 281 | 'page_is_redirect', 'cl_sortkey', 'cat_id', 'cat_title', |
282 | 282 | 'cat_subcats', 'cat_pages', 'cat_files', 'cl_sortkey_prefix' ), |
283 | 283 | array( 'cl_to' => $this->title->getDBkey() ) + $extraConds, |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -293,6 +293,7 @@ |
294 | 294 | * (bug 24714) Usage of {{#dateformat: }} in wikis without $wgUseDynamicDates no |
295 | 295 | longer pollutes the parser cache. |
296 | 296 | * (bug 17031) Correct which characters the parser allows in tag attributes. |
| 297 | +* Save 200 useless queries on each category page view |
297 | 298 | |
298 | 299 | === API changes in 1.17 === |
299 | 300 | * (bug 22738) Allow filtering by action type on query=logevent. |