From 4c972c834b8e5247c73a6f0e2eda6e7799d782d4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Thiemo=20M=C3=A4ttig?= Date: Fri, 1 Aug 2014 17:13:18 +0200 Subject: [PATCH] Fix messed up parameters in Recentchanges hook Ouch. Sorry. Bug: 68938 Bug: 68943 Change-Id: I3c02c2ff06a3e8ee02136c876276cb63de03bcc7 --- includes/specials/SpecialRecentchangeslinked.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/specials/SpecialRecentchangeslinked.php b/includes/specials/SpecialRecentchangeslinked.php index 6c617cdd9f..9700638a03 100644 --- a/includes/specials/SpecialRecentchangeslinked.php +++ b/includes/specials/SpecialRecentchangeslinked.php @@ -109,8 +109,8 @@ class SpecialRecentChangesLinked extends SpecialRecentChanges { $opts['tagfilter'] ); - if ( !$this->runMainQueryHook( $conds, $tables, $join_conds, $opts, $query_options, - $select ) + if ( !$this->runMainQueryHook( $tables, $select, $conds, $query_options, $join_conds, + $opts ) ) { return false; } -- 2.20.1