diff options
author | Dave Lawrence <dlawrence@mozilla.com> | 2012-01-12 00:08:00 +0100 |
---|---|---|
committer | Dave Lawrence <dlawrence@mozilla.com> | 2012-01-12 00:08:00 +0100 |
commit | e75d8cf78f93434f9f3394ab215e6eb5a28248ba (patch) | |
tree | 3dc0defa476484ef4c1916500b107cdfa5a9cfef | |
parent | 5861a13649c61de6b66c876ac1ea1faa8afd51c5 (diff) | |
download | bugzilla-e75d8cf78f93434f9f3394ab215e6eb5a28248ba.tar.gz bugzilla-e75d8cf78f93434f9f3394ab215e6eb5a28248ba.tar.xz |
Bug 715467 - Inconsistency in patch option links
-rw-r--r-- | Bugzilla/Template.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Template.pm b/Bugzilla/Template.pm index ee8aa4309..a1a6944f0 100644 --- a/Bugzilla/Template.pm +++ b/Bugzilla/Template.pm @@ -307,8 +307,8 @@ sub get_attachment_link { # Whitespace matters here because these links are in <pre> tags. return qq|<span class="$className">| . qq|<a href="${linkval}" name="attach_${attachid}" title="$title">$link_text</a>| - . qq|${patchlink}| . qq| <a href="${linkval}&action=edit" title="$title">[details]</a>| + . qq|${patchlink}| . qq|</span>|; } else { |