delete $param{maintenc}
}
-
-if (not grep {exists $param{$_}} keys %package_search_keys and exists $param{users}) {
- $param{usertag} = [make_list($param{users})];
-}
-
if (exists $param{pkg}) {
$param{package} = $param{pkg};
delete $param{pkg};
}
+if (not grep {exists $param{$_}} keys %package_search_keys and exists $param{users}) {
+ $param{usertag} = [make_list($param{users})];
+}
+
my %bugusertags;
my %ut;
my %seen_users;
}
if (defined $param{usertag}) {
- my $do_not_add_usertags = grep {exists $param{$_}} keys %package_search_keys;
for my $usertag (make_list($param{usertag})) {
my %select_ut = ();
my ($u, $t) = split /:/, $usertag, 2;
$t = join(",", keys(%select_ut));
}
add_user($u,\%ut,\%bugusertags,\%seen_users,\%cats,\%hidden);
- push @{$param{tag}}, split /,/, $t unless $do_not_add_usertags;
+ push @{$param{tag}}, split /,/, $t;
}
}