diff options
author | dave%intrec.com <> | 2001-02-21 07:19:10 +0100 |
---|---|---|
committer | dave%intrec.com <> | 2001-02-21 07:19:10 +0100 |
commit | 074bb472ec83b242440b8db70802f8aa90dd51fe (patch) | |
tree | 191338fdcc08387670499ba2e389be7699e43887 | |
parent | a9f561f8b908f16af16939a0eab49d0001313c38 (diff) | |
download | bugzilla-074bb472ec83b242440b8db70802f8aa90dd51fe.tar.gz bugzilla-074bb472ec83b242440b8db70802f8aa90dd51fe.tar.xz |
Fix for bug 69269: misleading comment for reassign by component when QA Contact is in use.
-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>"; } |