Change the order of displaying user topics

This commit is contained in:
Visman 2020-09-01 12:56:56 +07:00
parent c20accd434
commit 64abddd38d

View file

@ -60,7 +60,7 @@ class ActionT extends Method
FROM ::topics AS t
INNER JOIN ::posts AS p ON t.first_post_id=p.id
WHERE t.forum_id IN (?ai:forums) AND t.moved_to=0 AND p.poster_id=?i:uid
ORDER BY t.last_post DESC';
ORDER BY t.first_post_id DESC'; // t.last_post
break;
case 'new':
$query = 'SELECT t.id