If no sort order is specified, use the cookie if available.

This commit is contained in:
terry%mozilla.org 2000-01-22 19:23:58 +00:00
Родитель 514b98b46e
Коммит b9bf740674
1 изменённых файлов: 6 добавлений и 2 удалений

Просмотреть файл

@ -550,10 +550,14 @@ foreach my $f ("short_desc", "long_desc", "bug_file_loc",
$query .= "group by bugs.bug_id\n";
if (defined $::FORM{'order'} && $::FORM{'order'} ne "") {
if ($::COOKIE{'LASTORDER'} && $::FORM{'order'} =~ /^reuse/i) {
if ($::COOKIE{'LASTORDER'}) {
if ((!$::FORM{'order'}) || $::FORM{'order'} =~ /^reuse/i) {
$::FORM{'order'} = url_decode($::COOKIE{'LASTORDER'});
}
}
if (defined $::FORM{'order'} && $::FORM{'order'} ne "") {
$query .= "order by ";
$::FORM{'order'} =~ s/votesum/bugs.votes/; # Silly backwards compatability
# hack.