зеркало из https://github.com/mozilla/pjs.git
Fixed sorting for popular/downloads sort in relation with bug 282696.
This commit is contained in:
Родитель
3a9cefa8ad
Коммит
dec6b6a7be
|
@ -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 {
|
||||
|
|
Загрузка…
Ссылка в новой задаче