Commit ba16c04e authored by kiko%async.com.br's avatar kiko%async.com.br

Fix for bug 252839: Remove &action=view from links in attachment table;

this was done to improve link target consistency and avoid shell-pasting bustage from the & character. r=myk, a=justdave.
parent 39633788
......@@ -36,7 +36,7 @@
[% IF !attachment.isprivate || canseeprivate %]
<tr [% "class=\"bz_private\"" IF attachment.isprivate %]>
<td valign="top">
<a href="attachment.cgi?id=[% attachment.attachid %]&amp;action=view">[% attachment.description FILTER html FILTER obsolete(attachment.isobsolete) %]</a>
<a href="attachment.cgi?id=[% attachment.attachid %]">[% attachment.description FILTER html FILTER obsolete(attachment.isobsolete) %]</a>
</td>
<td valign="top">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment