From a9c36765022eb5b735a8ad02ba8e6e8f610b0cc7 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Tue, 31 Mar 2009 15:57:13 +0000 Subject: [PATCH] Fixed fatal from r49068. Removed verbose formatting :) --- includes/specials/SpecialRecentchangeslinked.php | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/includes/specials/SpecialRecentchangeslinked.php b/includes/specials/SpecialRecentchangeslinked.php index 2a490c9199..c58ffff076 100644 --- a/includes/specials/SpecialRecentchangeslinked.php +++ b/includes/specials/SpecialRecentchangeslinked.php @@ -85,13 +85,8 @@ class SpecialRecentchangeslinked extends SpecialRecentchanges { $join_conds['watchlist'] = array( 'LEFT JOIN', "wl_user={$uid} AND wl_title=rc_title AND wl_namespace=rc_namespace" ); } - ChangeTags::modifyDisplayQuery( $tables, - $select, - $conds, - $join_conds, - $query_options, - $opts['tagfilter'], - ); + ChangeTags::modifyDisplayQuery( $tables, $select, $conds, $join_conds, + $query_options, $opts['tagfilter'] ); // XXX: parent class does this, should we too? // wfRunHooks('SpecialRecentChangesQuery', array( &$conds, &$tables, &$join_conds, $opts ) ); -- 2.20.1