From 957af6f958c36f0c2aef36259a80d9e59c2df8ef Mon Sep 17 00:00:00 2001 From: umherirrender Date: Sun, 28 Jun 2015 22:00:27 +0200 Subject: [PATCH] Ignore tagfilter url parameter on Special:Undelete There is no form element, therefore no need to check for a value. This avoids use of $wgRequest in ChangeTags::modifyDisplayQuery Change-Id: I792e462fb2e9c8bb084cb4dae38a6be739bde25d --- includes/specials/SpecialUndelete.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/includes/specials/SpecialUndelete.php b/includes/specials/SpecialUndelete.php index 5732ef96c8..d7e75bc668 100644 --- a/includes/specials/SpecialUndelete.php +++ b/includes/specials/SpecialUndelete.php @@ -149,7 +149,8 @@ class PageArchive { $fields, $conds, $join_conds, - $options + $options, + '' ); return $dbr->select( $tables, -- 2.20.1