summaryrefslogtreecommitdiffstats
path: root/bug_form.pl
diff options
context:
space:
mode:
authorterry%mozilla.org <>2000-02-03 02:43:34 +0100
committerterry%mozilla.org <>2000-02-03 02:43:34 +0100
commitf3e3cab0b214a8941cab1c55b55eb6397f91deb4 (patch)
treead5a8426b8e1aa6ea62c7e1524302945fbe872d5 /bug_form.pl
parenta8ecf3cfc46959d830b3d86fa1a63ac07993b53a (diff)
downloadbugzilla-f3e3cab0b214a8941cab1c55b55eb6397f91deb4.tar.gz
bugzilla-f3e3cab0b214a8941cab1c55b55eb6397f91deb4.tar.xz
Simplify dependency wording.
Diffstat (limited to 'bug_form.pl')
-rw-r--r--bug_form.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/bug_form.pl b/bug_form.pl
index 0bee1ba61..c5cfd96e2 100644
--- a/bug_form.pl
+++ b/bug_form.pl
@@ -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";
}