aboutsummaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2006-12-31 08:45:07 +0000
committerlpsolit%gmail.com <>2006-12-31 08:45:07 +0000
commit21ccfc92309524062daad9ca7ac69d9dfa0e25b2 (patch)
treef91f526f48daf9c32857136fd6ebd46cafefd783 /Bugzilla
parent373f33fabc6d495d197fcf0a997b716d61f1e16d (diff)
downloadbugs-21ccfc92309524062daad9ca7ac69d9dfa0e25b2.tar
bugs-21ccfc92309524062daad9ca7ac69d9dfa0e25b2.tar.gz
bugs-21ccfc92309524062daad9ca7ac69d9dfa0e25b2.tar.bz2
bugs-21ccfc92309524062daad9ca7ac69d9dfa0e25b2.tar.xz
bugs-21ccfc92309524062daad9ca7ac69d9dfa0e25b2.zip
Bug 248037: Link from attachment 'created' date to comment where it was created - Patch by Frédéric Buclin <LpSolit@gmail.com> r=timeless a=justdave
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/Template.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Template.pm b/Bugzilla/Template.pm
index 608d35fcb..b4e0dcb90 100644
--- a/Bugzilla/Template.pm
+++ b/Bugzilla/Template.pm
@@ -388,7 +388,7 @@ sub get_attachment_link {
my $linkval = "attachment.cgi?id=$attachid";
# Whitespace matters here because these links are in <pre> tags.
return qq|<span class="$className">|
- . qq|<a href="${linkval}" title="$title">$link_text</a>|
+ . qq|<a href="${linkval}" name="attach_${attachid}" title="$title">$link_text</a>|
. qq| <a href="${linkval}&amp;action=edit" title="$title">[details]</a>|
. qq|</span>|;
}