diff options
author | burnus%gmx.de <> | 2003-04-09 18:29:15 +0200 |
---|---|---|
committer | burnus%gmx.de <> | 2003-04-09 18:29:15 +0200 |
commit | bbb41a57d19d5e395e92c42d9852357f56e76635 (patch) | |
tree | 2bf74d97672cc239f3d5fb69aaa3d692966277e7 /template | |
parent | 1b071f06dee3e09e8316feadecc0625ed47f01a8 (diff) | |
download | bugzilla-bbb41a57d19d5e395e92c42d9852357f56e76635.tar.gz bugzilla-bbb41a57d19d5e395e92c42d9852357f56e76635.tar.xz |
Bug 71790 - Duplicate resolution field should include bug number of original
r=bbaetz,a=justdave
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/bug/edit.html.tmpl | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/template/en/default/bug/edit.html.tmpl b/template/en/default/bug/edit.html.tmpl index 2d9306256..6d512e1fd 100644 --- a/template/en/default/bug/edit.html.tmpl +++ b/template/en/default/bug/edit.html.tmpl @@ -160,7 +160,12 @@ <a href="bug_status.html">Resolution</a>: </b> </td> - <td>[% bug.resolution FILTER html %]</td> + <td> + [% bug.resolution FILTER html %] + [% IF bug.resolution == "DUPLICATE" %] + of [% "bug ${bug.dup_id}" FILTER bug_link(bug.dup_id) %] + [% END %] + </td> <td> </td> <td align="right"> |