summaryrefslogtreecommitdiffstats
path: root/ajax/setitemstatus.php
diff options
context:
space:
mode:
authorAlessandro Cosentino <cosenal@gmail.com>2012-09-13 11:17:02 -0400
committerAlessandro Cosentino <cosenal@gmail.com>2012-09-13 11:17:02 -0400
commit008e565bed860e9f61dd9aaeefca74e003b42f8a (patch)
tree1f2a20c58c8e61c058a8859bcd07c9f665ac603f /ajax/setitemstatus.php
parent5c164090799ff96073915a9f21cf83038f828048 (diff)
small refactoring on the backend
Diffstat (limited to 'ajax/setitemstatus.php')
-rw-r--r--ajax/setitemstatus.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/ajax/setitemstatus.php b/ajax/setitemstatus.php
index 2f99804e9..14ce8ad91 100644
--- a/ajax/setitemstatus.php
+++ b/ajax/setitemstatus.php
@@ -19,7 +19,7 @@ $itemId = $_POST['itemId'];
$status = $_POST['status'];
$itemMapper = new OCA\News\ItemMapper();
-$item = $itemMapper->find($itemId);
+$item = $itemMapper->findById($itemId);
switch ($status) {
case 'read':