From: terry%mozilla.org <> Date: Sat, 29 Jan 2000 00:39:29 +0000 (+0000) Subject: The "Show list" link that is supposed to quickly get you back to the X-Git-Tag: bugzilla-2.12~407 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9fc653d692973589ada280cab731360ee0996f86;p=thirdparty%2Fbugzilla.git The "Show list" link that is supposed to quickly get you back to the list of bugs you queried for was busted. --- diff --git a/buglist.cgi b/buglist.cgi index 9466e50f28..3bc6a036d3 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -827,7 +827,7 @@ query. You will have to start over at the query page. } my @list = split(/:/, $::COOKIE{'BUGLIST'}); $::MFORM{'bug_id'} = \@list; - $::FORM{'bug_id'} = join('', $::MFORM{'bug_id'}); + $::FORM{'bug_id'} = join(',', @list); if (!$::FORM{'order'}) { $::FORM{'order'} = 'reuse last sort'; }