diff options
author | Marc Alexander <admin@m-a-styles.de> | 2014-08-23 16:36:39 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2014-08-23 16:36:39 +0200 |
commit | e5e45f860b798c955f1817001f07aabcbccbabcf (patch) | |
tree | ad24053bcae50549245054ac8b75e4965a810d3c /phpBB/phpbb/feed/news.php | |
parent | 752c73193e04f7eb22b3b90ad746a6b277e59272 (diff) | |
download | forums-e5e45f860b798c955f1817001f07aabcbccbabcf.tar forums-e5e45f860b798c955f1817001f07aabcbccbabcf.tar.gz forums-e5e45f860b798c955f1817001f07aabcbccbabcf.tar.bz2 forums-e5e45f860b798c955f1817001f07aabcbccbabcf.tar.xz forums-e5e45f860b798c955f1817001f07aabcbccbabcf.zip |
[ticket/12966] Sort by post_time and post_id where applicable
This change was not applied to the search as this would require a larger
rewrite of the search methods.
PHPBB3-12966
Diffstat (limited to 'phpBB/phpbb/feed/news.php')
-rw-r--r-- | phpBB/phpbb/feed/news.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/feed/news.php b/phpBB/phpbb/feed/news.php index ea5f4febf5..a02c199d85 100644 --- a/phpBB/phpbb/feed/news.php +++ b/phpBB/phpbb/feed/news.php @@ -99,7 +99,7 @@ class news extends \phpbb\feed\topic_base ), 'WHERE' => 'p.topic_id = t.topic_id AND ' . $this->db->sql_in_set('p.post_id', $post_ids), - 'ORDER_BY' => 'p.post_time DESC', + 'ORDER_BY' => 'p.post_time DESC, p.post_id DESC', ); return true; |