Index: trunk/phase3/includes/specials/SpecialNewpages.php |
— | — | @@ -438,12 +438,7 @@ |
439 | 439 | $fields = array(); |
440 | 440 | |
441 | 441 | ## Modify query for tags |
442 | | - ChangeTags::modifyDisplayQuery( $info['tables'], |
443 | | - $fields, |
444 | | - $info['conds'], |
445 | | - $info['join_conds'], |
446 | | - $info['options'], |
447 | | - $this->opts['tagfilter'] ); |
| 442 | + ChangeTags::modifyDisplayQuery( $info['tables'], $fields, $info['conds'], $info['join_conds'], $this->opts['tagfilter'] ); |
448 | 443 | |
449 | 444 | return $info; |
450 | 445 | } |
Index: trunk/phase3/includes/specials/SpecialRecentchanges.php |
— | — | @@ -287,8 +287,7 @@ |
288 | 288 | } |
289 | 289 | |
290 | 290 | // Tag stuff. |
291 | | - $fields = array(); |
292 | | - // Fields are * in this case, so let the function modify an empty array to keep it happy. |
| 291 | + $fields = array(); // Fields are * in this case, so let the function modify an empty array to keep it happy. |
293 | 292 | ChangeTags::modifyDisplayQuery( $tables, $fields, $conds, $join_conds, $opts['tagfilter'] ); |
294 | 293 | |
295 | 294 | wfRunHooks('SpecialRecentChangesQuery', array( &$conds, &$tables, &$join_conds, $opts ) ); |
Index: trunk/phase3/includes/specials/SpecialContributions.php |
— | — | @@ -398,12 +398,7 @@ |
399 | 399 | 'join_conds' => $join_cond |
400 | 400 | ); |
401 | 401 | |
402 | | - ChangeTags::modifyDisplayQuery( $queryInfo['tables'], |
403 | | - $queryInfo['fields'], |
404 | | - $queryInfo['conds'], |
405 | | - $queryInfo['join_conds'], |
406 | | - $queryInfo['options'], |
407 | | - $this->tagFilter ); |
| 402 | + ChangeTags::modifyDisplayQuery( $queryInfo['tables'], $queryInfo['fields'], $queryInfo['conds'], $queryInfo['join_conds'], $this->tagFilter ); |
408 | 403 | |
409 | 404 | wfRunHooks( 'ContribsPager::getQueryInfo', array( &$this, &$queryInfo ) ); |
410 | 405 | return $queryInfo; |