Commit 256ddf6e authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 305771: Cannot create request flags with no requestee - Patch by Myk Melez…

Bug 305771: Cannot create request flags with no requestee - Patch by Myk Melez <myk@mozilla.org> r=LpSolit a=justdave
parent edc28235
......@@ -803,8 +803,9 @@ sub FormToNewFlags {
my $status = $cgi->param("flag_type-$type_id");
trick_taint($status);
if ($status eq "?") {
foreach my $login ($cgi->param("requestee_type-$type_id")) {
my @logins = $cgi->param("requestee_type-$type_id");
if ($status eq "?" && scalar(@logins) > 0) {
foreach my $login (@logins) {
my $requestee = new Bugzilla::User(login_to_id($login));
push (@flags, { type => $flag_type ,
target => $target ,
......
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