diff options
-rw-r--r-- | bug_form.pl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bug_form.pl b/bug_form.pl index a9daf8932..df1f1df99 100644 --- a/bug_form.pl +++ b/bug_form.pl @@ -459,7 +459,9 @@ if ($canedit || $::userid == $assignedtoid || } $knum++; print "<INPUT TYPE=radio NAME=knob VALUE=reassignbycomponent> - Reassign bug to owner of selected component<br>\n"; + Reassign bug to owner "; + if (Param("useqacontact")) { print "and QA contact "; } + print "of selected component<br>\n"; if ($status eq $::unconfirmedstate && ($canconfirm || $canedit)) { print " <INPUT TYPE=checkbox NAME=compconfirm> and confirm bug (change status to <b>NEW</b>)<BR>"; } |