From: Stephane Bisson Date: Tue, 2 May 2017 19:29:24 +0000 (-0400) Subject: RC Filters: Support multiple tag filters X-Git-Tag: 1.31.0-rc.0~3369^2 X-Git-Url: http://git.cyclocoop.org/%22%20.%20generer_url_ecrire%28%22auteur_infos%22%2C%20%22id_auteur=%24id%22%29%20.%20%22?a=commitdiff_plain;h=bbf0dbd566d1e0a8bf62754206dd1a995d662bc6;p=lhc%2Fweb%2Fwiklou.git RC Filters: Support multiple tag filters Bug: T164133 Change-Id: Id9404940644197bac235202a45324b201613303d --- diff --git a/includes/changetags/ChangeTags.php b/includes/changetags/ChangeTags.php index ca3c28ba73..46cae8f011 100644 --- a/includes/changetags/ChangeTags.php +++ b/includes/changetags/ChangeTags.php @@ -660,7 +660,7 @@ class ChangeTags { $tables[] = 'change_tag'; $join_conds['change_tag'] = [ 'INNER JOIN', $join_cond ]; - $conds['ct_tag'] = $filter_tag; + $conds['ct_tag'] = explode( ',', $filter_tag ); } }