From: David Lawrence Date: Mon, 22 Sep 2014 13:58:37 +0000 (+0000) Subject: Bug 1069363: "show user list again" link does not include is_enabled for showing... X-Git-Tag: bugzilla-4.4.6~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=392fcaf59ec9baa838f86535bc7222708aa5bc85;p=thirdparty%2Fbugzilla.git Bug 1069363: "show user list again" link does not include is_enabled for showing previous results list r=glob,a=glob --- diff --git a/editusers.cgi b/editusers.cgi index a5ba6d1e35..9778aa808b 100755 --- a/editusers.cgi +++ b/editusers.cgi @@ -704,7 +704,9 @@ sub check_user { sub mirrorListSelectionValues { my $cgi = Bugzilla->cgi; if (defined($cgi->param('matchtype'))) { - foreach ('matchvalue', 'matchstr', 'matchtype', 'grouprestrict', 'groupid') { + foreach ('matchvalue', 'matchstr', 'matchtype', + 'grouprestrict', 'groupid', 'enabled_only') + { $vars->{'listselectionvalues'}{$_} = $cgi->param($_); } }