Merge branch '3.3.x'

This commit is contained in:
Marc Alexander 2025-03-01 14:48:17 +00:00
commit 328d6f1714

View file

@ -1385,10 +1385,10 @@ switch ($mode)
$order_by .= $sort_key_sql[$sort_key] . ' ' . (($sort_dir == 'a') ? 'ASC' : 'DESC');
// Unfortunately we must do this here for sorting by rank, else the sort order is applied wrongly
if ($sort_key == 'm')
// For sorting by non-unique columns (rank, posts) add unique sort key to avoid duplicated rows in results
if ($sort_key == 'm' || $sort_key == 'd')
{
$order_by .= ', u.user_posts DESC';
$order_by .= ', u.user_id ASC';
}
/**