Fixed sorting for popular/downloads sort in relation with bug 282696.

This commit is contained in:
mike.morgan%oregonstate.edu 2006-05-01 23:39:54 +00:00
Родитель 3a9cefa8ad
Коммит dec6b6a7be
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -209,10 +209,10 @@ if (!empty($sql['sort'])) {
$orderby .= " main.Name ASC";
break;
case 'rating':
$orderby .= " main.Rating DESC";
$orderby .= " main.Rating DESC, main.Name ASC";
break;
case 'downloads':
$orderby .= " main.TotalDownloads DESC";
$orderby .= " main.downloadcount DESC, main.Rating DESC";
break;
}
} else {