]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Simplify dependency wording.
authorterry%mozilla.org <>
Thu, 3 Feb 2000 01:43:34 +0000 (01:43 +0000)
committerterry%mozilla.org <>
Thu, 3 Feb 2000 01:43:34 +0000 (01:43 +0000)
bug_form.pl

index 0bee1ba61c87baeca73faff3f1c0539dc7199343..c5cfd96e227a3aadc2eab617099aa9b849ee438e 100644 (file)
@@ -393,7 +393,7 @@ sub EmitDependList {
 
 if (Param("usedependencies")) {
     print "<table><tr>\n";
-    EmitDependList("Bugs that bug $id depends on", "blocked", "dependson");
+    EmitDependList("Bug $id depends on", "blocked", "dependson");
     print qq{
 <td rowspan=2><a href="showdependencytree.cgi?id=$id">Show dependency tree</a>
 };
@@ -403,7 +403,7 @@ if (Param("usedependencies")) {
 };
     }
     print "</td></tr><tr>";
-    EmitDependList("Bugs depending on bug $id", "dependson", "blocked");
+    EmitDependList("Bug $id blocks", "dependson", "blocked");
     print "</tr></table>\n";
 }