Commit 9fc653d6 authored by terry%mozilla.org's avatar terry%mozilla.org

The "Show list" link that is supposed to quickly get you back to the

list of bugs you queried for was busted.
parent 2ecbc5b2
...@@ -827,7 +827,7 @@ query. You will have to start over at the <A HREF="query.cgi">query page</A>. ...@@ -827,7 +827,7 @@ query. You will have to start over at the <A HREF="query.cgi">query page</A>.
} }
my @list = split(/:/, $::COOKIE{'BUGLIST'}); my @list = split(/:/, $::COOKIE{'BUGLIST'});
$::MFORM{'bug_id'} = \@list; $::MFORM{'bug_id'} = \@list;
$::FORM{'bug_id'} = join('', $::MFORM{'bug_id'}); $::FORM{'bug_id'} = join(',', @list);
if (!$::FORM{'order'}) { if (!$::FORM{'order'}) {
$::FORM{'order'} = 'reuse last sort'; $::FORM{'order'} = 'reuse last sort';
} }
......
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