diff options
author | David Lawrence <dkl@mozilla.com> | 2014-11-19 16:57:19 +0100 |
---|---|---|
committer | David Lawrence <dkl@mozilla.com> | 2014-11-19 16:58:57 +0100 |
commit | 5bd2ef8eeca8759e206e709ac2689ea07f8c2676 (patch) | |
tree | ea0856abee051d034fca5e7c07441bdeb3a3fa26 /template | |
parent | e4bc2084f4c9f8ec5d411a9b41915eab0104eca0 (diff) | |
download | bugzilla-5bd2ef8eeca8759e206e709ac2689ea07f8c2676.tar.gz bugzilla-5bd2ef8eeca8759e206e709ac2689ea07f8c2676.tar.xz |
Bug 1100942 - Attachment links in request.cgi should go to the attachment and not default to &action=edit
r=gerv,a=glob
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/request/queue.html.tmpl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/template/en/default/request/queue.html.tmpl b/template/en/default/request/queue.html.tmpl index 261db0438..e9862f7c3 100644 --- a/template/en/default/request/queue.html.tmpl +++ b/template/en/default/request/queue.html.tmpl @@ -256,8 +256,9 @@ to some group are shown by default. [% BLOCK display_attachment %] [% IF request.attach_id %] - <a href="attachment.cgi?id=[% request.attach_id %]&action=edit"> + <a href="attachment.cgi?id=[% request.attach_id %]"> [% request.attach_id %]: [%+ request.attach_summary FILTER html %]</a> + [<a href="attachment.cgi?id=[% request.attach_id %]&action=edit">details</a>] [% ELSE %] N/A [% END %] |