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