summaryrefslogtreecommitdiffstats
path: root/bug_form.pl
diff options
context:
space:
mode:
authordave%intrec.com <>2001-02-21 07:19:10 +0100
committerdave%intrec.com <>2001-02-21 07:19:10 +0100
commit074bb472ec83b242440b8db70802f8aa90dd51fe (patch)
tree191338fdcc08387670499ba2e389be7699e43887 /bug_form.pl
parenta9f561f8b908f16af16939a0eab49d0001313c38 (diff)
downloadbugzilla-074bb472ec83b242440b8db70802f8aa90dd51fe.tar.gz
bugzilla-074bb472ec83b242440b8db70802f8aa90dd51fe.tar.xz
Fix for bug 69269: misleading comment for reassign by component when QA Contact is in use.
Diffstat (limited to 'bug_form.pl')
-rw-r--r--bug_form.pl4
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 "&nbsp;&nbsp;&nbsp;&nbsp;<INPUT TYPE=checkbox NAME=compconfirm> and confirm bug (change status to <b>NEW</b>)<BR>";
}