Commit e4f8a784 authored by Tiago Mello's avatar Tiago Mello

Bug 315451: Add 'Enabled user accounts only' filter when searching for

user accounts. r=glob, a=LpSolit
parent dd832b27
......@@ -77,6 +77,7 @@ if ($action eq 'search') {
my $matchstr = trim($cgi->param('matchstr'));
my $matchtype = $cgi->param('matchtype');
my $grouprestrict = $cgi->param('grouprestrict') || '0';
my $enabled_only = $cgi->param('enabled_only') || '0';
my $query = 'SELECT DISTINCT userid, login_name, realname, is_enabled ' .
'FROM profiles';
my @bindValues;
......@@ -167,6 +168,12 @@ if ($action eq 'search') {
@{Bugzilla::Group->flatten_group_membership($group->id)});
$query .= " $nextCondition ugm.group_id IN($grouplist) ";
}
if ($enabled_only eq '1') {
$query .= " $nextCondition profiles.is_enabled = 1 ";
$nextCondition = 'AND';
}
$query .= ' ORDER BY profiles.login_name';
$vars->{'users'} = $dbh->selectall_arrayref($query,
......
......@@ -62,6 +62,13 @@
[% END %]
</select></p>
[% END %]
<p>
<input type="checkbox" name="enabled_only" value="1" id="enabled_only"
checked="checked">
<label for="enabled_only">Enabled user accounts only</label>
</p>
</form>
[% IF editusers %]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment