summaryrefslogtreecommitdiffstats
path: root/template/en/default/list/list.html.tmpl
diff options
context:
space:
mode:
authortravis%sedsystems.ca <>2005-01-24 14:20:49 +0100
committertravis%sedsystems.ca <>2005-01-24 14:20:49 +0100
commitcd6211de678a3638f2813332d436d6e4844d3d60 (patch)
tree4a04b091541d971d9bd40451ffad197a7f254dcc /template/en/default/list/list.html.tmpl
parentd5db04e277a47d922606ff9599fa7044a6711288 (diff)
downloadbugzilla-cd6211de678a3638f2813332d436d6e4844d3d60.tar.gz
bugzilla-cd6211de678a3638f2813332d436d6e4844d3d60.tar.xz
Bug 201818 : Convert long_list.cgi to a format
Patch by Rob Siklos <robzilla@siklos.ca> r=wurblzap, glob a=myk
Diffstat (limited to 'template/en/default/list/list.html.tmpl')
-rw-r--r--template/en/default/list/list.html.tmpl7
1 files changed, 5 insertions, 2 deletions
diff --git a/template/en/default/list/list.html.tmpl b/template/en/default/list/list.html.tmpl
index 48759ceb7..24d00feb6 100644
--- a/template/en/default/list/list.html.tmpl
+++ b/template/en/default/list/list.html.tmpl
@@ -129,8 +129,11 @@
<tr>
[% IF bugs.size > 0 %]
<td valign="middle">
- <form method="post" action="long_list.cgi">
- <input type="hidden" name="buglist" value="[% buglist %]">
+ <form method="post" action="show_bug.cgi">
+ [% FOREACH id = buglist %]
+ <input type="hidden" name="id" value="[% id FILTER html %]">
+ [% END %]
+ <input type="hidden" name="format" value="multiple">
<input type="submit" value="Long Format">
</form>
</td>