summaryrefslogtreecommitdiffstats
path: root/bl
diff options
context:
space:
mode:
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 {