mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-28 03:18:41 +00:00
Bug 192571 Empty default owner (assignee or QA) causes "Reassign bug to owner and QA contact of selected component to NOOP
r=justdave a=justdave
This commit is contained in:
parent
a755fac7e0
commit
b6daea0980
@ -941,10 +941,9 @@ SWITCH: for ($::FORM{'knob'}) {
|
||||
SendSQL("SELECT initialqacontact FROM components " .
|
||||
"WHERE components.id = $comp_id");
|
||||
my $qacontact = FetchOneColumn();
|
||||
if (defined $qacontact && $qacontact != 0) {
|
||||
DoComma();
|
||||
$::query .= "qa_contact = $qacontact";
|
||||
}
|
||||
$qacontact = 0 unless (defined $qacontact && $qacontact != 0);
|
||||
DoComma();
|
||||
$::query .= "qa_contact = $qacontact";
|
||||
}
|
||||
last SWITCH;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user