summaryrefslogtreecommitdiffstats
path: root/bl
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-04-05 23:43:15 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2013-04-05 23:43:15 +0200
commitf704dfe333acea43387009bed08cc2f09dbb8fd5 (patch)
treebe5554f0ddfc28e4266e30d76ff277bd22908c3e /bl
parent27f34bcb4b774d291c03889024e03bb36b0e19b9 (diff)
brought back starring of feeds
Diffstat (limited to 'bl')
-rw-r--r--bl/itembl.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/bl/itembl.php b/bl/itembl.php
index eaf69c3ca..504e48016 100644
--- a/bl/itembl.php
+++ b/bl/itembl.php
@@ -95,7 +95,7 @@ class ItemBl extends Bl {
public function star($feedId, $guidHash, $isStarred, $userId){
// FIXME: this can throw two possible exceptions
- $item = $this->mapper->findByGuidHash($feedId, $guidHash, $userId);
+ $item = $this->mapper->findByGuidHash($guidHash, $feedId, $userId);
if($isStarred){
$item->setStarred();
} else {