From 3fc18156ae0b586e8de0c82949acfa6291317536 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Mon, 29 Apr 2013 13:25:04 +0200 Subject: go back to order by id, fix #138, use a newest item id to prevent marking items as read that the user didnt see yet fix #141, also update the starred count periodically --- dependencyinjection/dicontainer.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'dependencyinjection/dicontainer.php') diff --git a/dependencyinjection/dicontainer.php b/dependencyinjection/dicontainer.php index 1c3b5f378..db647e852 100644 --- a/dependencyinjection/dicontainer.php +++ b/dependencyinjection/dicontainer.php @@ -92,7 +92,8 @@ class DIContainer extends BaseContainer { $this['FeedController'] = $this->share(function($c){ return new FeedController($c['API'], $c['Request'], - $c['FeedBusinessLayer'], $c['FolderBusinessLayer']); + $c['FeedBusinessLayer'], $c['FolderBusinessLayer'], + $c['ItemBusinessLayer']); }); $this['ItemController'] = $this->share(function($c){ -- cgit v1.2.3