Commit 54da2a3c authored by Matt Selsky's avatar Matt Selsky Committed by David Lawrence

Bug 977030 - Remove the useless buglist_joined variable in buglist.cgi

r=dkl,a=justdave
parent 43ce5f5b
......@@ -848,7 +848,6 @@ else { # remaining_time <= 0
$vars->{'bugs'} = \@bugs;
$vars->{'buglist'} = \@bugidlist;
$vars->{'buglist_joined'} = join(',', @bugidlist);
$vars->{'columns'} = $columns;
$vars->{'displaycolumns'} = \@displaycolumns;
......
......@@ -73,7 +73,7 @@
<div class="bz_query_debug">
<p>Total execution time: [% query_time FILTER html %] seconds</p>
[% FOREACH query = queries %]
<p>[% query.sql FILTER html %]</p>
<pre>[% query.sql FILTER html %]</pre>
<p>Execution time: [% query.time FILTER html %] seconds</p>
[% IF query.explain %]
<pre>[% query.explain FILTER html %]</pre>
......@@ -190,8 +190,8 @@
<div class="buglist_menu">
<div class="bz_query_buttons">
<form method="post" action="show_bug.cgi">
[% id = buglist.join(",") %]
<input type="hidden" name="id" value="[% id FILTER html %]">
[% buglist_joined = buglist.join(",") %]
<input type="hidden" name="id" value="[% buglist_joined FILTER html %]">
<input type="hidden" name="format" value="multiple">
<input type="submit" id="long_format" value="Long Format">
</form>
......
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