mirror of
https://github.com/phpbb/phpbb.git
synced 2025-03-13 20:28:44 +01:00
Fix bug #496166, removed sort_order since for top_ten it makes no real sense ... bet we'll get comments about this ...
git-svn-id: file:///svn/phpbb/trunk@1699 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
03d3a39d3c
commit
c44e2fbf6b
@ -79,7 +79,7 @@ if(isset($HTTP_GET_VARS['mode']) || isset($HTTP_POST_VARS['mode']))
|
||||
$order_by = "user_website $sort_order LIMIT $start, " . $board_config['topics_per_page'];
|
||||
break;
|
||||
case 'topten':
|
||||
$order_by = "user_posts $sort_order LIMIT 10";
|
||||
$order_by = "user_posts DESC LIMIT 10";
|
||||
break;
|
||||
default:
|
||||
$order_by = "user_regdate $sort_order LIMIT $start, " . $board_config['topics_per_page'];
|
||||
|
Loading…
x
Reference in New Issue
Block a user