diff options
author | terry%mozilla.org <> | 2000-02-03 02:43:34 +0100 |
---|---|---|
committer | terry%mozilla.org <> | 2000-02-03 02:43:34 +0100 |
commit | f3e3cab0b214a8941cab1c55b55eb6397f91deb4 (patch) | |
tree | ad5a8426b8e1aa6ea62c7e1524302945fbe872d5 | |
parent | a8ecf3cfc46959d830b3d86fa1a63ac07993b53a (diff) | |
download | bugzilla-f3e3cab0b214a8941cab1c55b55eb6397f91deb4.tar.gz bugzilla-f3e3cab0b214a8941cab1c55b55eb6397f91deb4.tar.xz |
Simplify dependency wording.
-rw-r--r-- | bug_form.pl | 4 |
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"; } |