From: umherirrender Date: Sat, 11 Jul 2015 11:06:47 +0000 (+0200) Subject: Ignore tagfilter url parameter on Special:EditTags X-Git-Tag: 1.31.0-rc.0~10797^2 X-Git-Url: https://git.heureux-cyclage.org/?a=commitdiff_plain;h=5828b6f4d272ffb10eb8a377a573a1029b073455;p=lhc%2Fweb%2Fwiklou.git Ignore tagfilter url parameter on Special:EditTags There is no need to pre-filter the seleteced revision for a tag. This avoids use of $wgRequest in ChangeTags::modifyDisplayQuery Change-Id: I5899a66ad8c500f058ce006c623d3e20c5bf8508 --- diff --git a/includes/changetags/ChangeTagsRevisionList.php b/includes/changetags/ChangeTagsRevisionList.php index 842d3272ba..ec401bc87d 100644 --- a/includes/changetags/ChangeTagsRevisionList.php +++ b/includes/changetags/ChangeTagsRevisionList.php @@ -52,7 +52,8 @@ class ChangeTagsRevisionList extends ChangeTagsList { $queryInfo['fields'], $queryInfo['conds'], $queryInfo['join_conds'], - $queryInfo['options'] + $queryInfo['options'], + '' ); return $db->select( $queryInfo['tables'],