From a34689d0d75fa1ea9191a2ac29be213d6997ea9f Mon Sep 17 00:00:00 2001 From: "terry%mozilla.org" Date: Wed, 2 Feb 2000 17:43:34 +0000 Subject: [PATCH] Simplify dependency wording. git-svn-id: svn://10.0.0.236/trunk@59528 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/bugzilla/bug_form.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mozilla/webtools/bugzilla/bug_form.pl b/mozilla/webtools/bugzilla/bug_form.pl index 0bee1ba61c8..c5cfd96e227 100644 --- a/mozilla/webtools/bugzilla/bug_form.pl +++ b/mozilla/webtools/bugzilla/bug_form.pl @@ -393,7 +393,7 @@ sub EmitDependList { if (Param("usedependencies")) { print "\n"; - EmitDependList("Bugs that bug $id depends on", "blocked", "dependson"); + EmitDependList("Bug $id depends on", "blocked", "dependson"); print qq{ "; - EmitDependList("Bugs depending on bug $id", "dependson", "blocked"); + EmitDependList("Bug $id blocks", "dependson", "blocked"); print "
Show dependency tree }; @@ -403,7 +403,7 @@ if (Param("usedependencies")) { }; } print "
\n"; }