diff options
author | kiko%async.com.br <> | 2004-07-29 11:55:00 +0200 |
---|---|---|
committer | kiko%async.com.br <> | 2004-07-29 11:55:00 +0200 |
commit | ba16c04e08ac7c92b37657f56775db2cde2fc634 (patch) | |
tree | c4e4a27127aeec527799f21e63064cc7d7f10f06 | |
parent | 39633788a33cbe86b5ebc292fb18652fdc702e46 (diff) | |
download | bugzilla-ba16c04e08ac7c92b37657f56775db2cde2fc634.tar.gz bugzilla-ba16c04e08ac7c92b37657f56775db2cde2fc634.tar.xz |
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.
-rw-r--r-- | template/en/default/attachment/list.html.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/en/default/attachment/list.html.tmpl b/template/en/default/attachment/list.html.tmpl index 8558a5959..d5741d6a2 100644 --- a/template/en/default/attachment/list.html.tmpl +++ b/template/en/default/attachment/list.html.tmpl @@ -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 %]&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"> |