Browse Source

Change the order of displaying user topics

Visman 5 years ago
parent
commit
64abddd38d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/Models/Search/ActionT.php

+ 1 - 1
app/Models/Search/ActionT.php

@@ -60,7 +60,7 @@ class ActionT extends Method
                     FROM ::topics AS t
                     FROM ::topics AS t
                     INNER JOIN ::posts AS p ON t.first_post_id=p.id
                     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
                     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;
                 break;
             case 'new':
             case 'new':
                 $query = 'SELECT t.id
                 $query = 'SELECT t.id