Index: trunk/extensions/FlaggedRevs/specialpages/UnreviewedPages_body.php |
— | — | @@ -270,6 +270,13 @@ |
271 | 271 | $fields[] = 'cl_sortkey'; |
272 | 272 | $conds['cl_to'] = $this->category; |
273 | 273 | $conds[] = 'cl_from = page_id'; |
| 274 | + if( $this->namespace == NS_FILE ) { |
| 275 | + $conds['cl_type'] = 'file'; |
| 276 | + } elseif( $this->namespace == NS_CATEGORY ) { |
| 277 | + $conds['cl_type'] = 'subcat'; |
| 278 | + } else { |
| 279 | + $conds['cl_type'] = 'page'; |
| 280 | + } |
274 | 281 | $this->mIndexField = 'cl_sortkey'; |
275 | 282 | $useIndex = array( 'categorylinks' => 'cl_sortkey' ); |
276 | 283 | $groupBy = 'cl_sortkey,cl_from'; |