From: dave%intrec.com <>
Date: Wed, 21 Feb 2001 06:19:10 +0000 (+0000)
Subject: Fix for bug 69269: misleading comment for reassign by component when QA Contact is...
X-Git-Tag: bugzilla-2.12~99
X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=074bb472ec83b242440b8db70802f8aa90dd51fe;p=thirdparty%2Fbugzilla.git
Fix for bug 69269: misleading comment for reassign by component when QA Contact is in use.
---
diff --git a/bug_form.pl b/bug_form.pl
index a9daf8932f..df1f1df990 100644
--- a/bug_form.pl
+++ b/bug_form.pl
@@ -459,7 +459,9 @@ if ($canedit || $::userid == $assignedtoid ||
}
$knum++;
print "
- Reassign bug to owner of selected component
\n";
+ Reassign bug to owner ";
+ if (Param("useqacontact")) { print "and QA contact "; }
+ print "of selected component
\n";
if ($status eq $::unconfirmedstate && ($canconfirm || $canedit)) {
print " and confirm bug (change status to NEW)
";
}