Fixed sort order in article feed
authorMarcel Werk <burntime@woltlab.com>
Sun, 18 Dec 2016 18:20:37 +0000 (19:20 +0100)
committerMarcel Werk <burntime@woltlab.com>
Sun, 18 Dec 2016 18:20:37 +0000 (19:20 +0100)
wcfsetup/install/files/lib/page/ArticleFeedPage.class.php

index 714e93ca729157e04f4a065992abb6274c94d844..2ac4046cd3406ac11d2493043890865eee2c8458 100644 (file)
@@ -54,6 +54,7 @@ class ArticleFeedPage extends AbstractFeedPage {
                
                // read the articles
                $this->items = new FeedArticleList($this->categoryID);
+               $this->items->sqlOrderBy = 'article.time ' . ARTICLE_SORT_ORDER;
                $this->items->sqlLimit = 20;
                $this->items->readObjects();