From 090fc696ca5f573228d56ceb4f5762f4d4f5b978 Mon Sep 17 00:00:00 2001 From: Andrew Garrett Date: Sat, 31 Jan 2009 07:55:40 +0000 Subject: [PATCH] E_STRICT (call-time pass-by-reference) --- includes/specials/SpecialRecentchanges.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/specials/SpecialRecentchanges.php b/includes/specials/SpecialRecentchanges.php index 79f00bc90f..3d7b4ba14f 100644 --- a/includes/specials/SpecialRecentchanges.php +++ b/includes/specials/SpecialRecentchanges.php @@ -288,7 +288,7 @@ class SpecialRecentChanges extends SpecialPage { // Tag stuff. $fields = array(); // Fields are * in this case, so let the function modify an empty array to keep it happy. - ChangeTags::modifyDisplayQuery( &$tables, $fields, &$conds, &$join_conds, $opts['tagfilter'] ); + ChangeTags::modifyDisplayQuery( $tables, $fields, $conds, $join_conds, $opts['tagfilter'] ); wfRunHooks('SpecialRecentChangesQuery', array( &$conds, &$tables, &$join_conds, $opts ) ); -- 2.20.1