mirror of
https://github.com/friendica/friendica
synced 2024-11-10 02:22:55 +00:00
Merge pull request #1472 from annando/issue-1063
The unseen marker is now set according to the api output
This commit is contained in:
commit
1523aecebd
1 changed files with 7 additions and 8 deletions
|
@ -1129,15 +1129,14 @@
|
|||
|
||||
$ret = api_format_items($r,$user_info);
|
||||
|
||||
// We aren't going to try to figure out at the item, group, and page
|
||||
// level which items you've seen and which you haven't. If you're looking
|
||||
// at the network timeline just mark everything seen.
|
||||
// Set all posts from the query above to seen
|
||||
$idarray = array();
|
||||
foreach ($r AS $item)
|
||||
$idarray[] = intval($item["id"]);
|
||||
|
||||
$r = q("UPDATE `item` SET `unseen` = 0
|
||||
WHERE `unseen` = 1 AND `uid` = %d",
|
||||
//intval($user_info['uid'])
|
||||
intval(api_user())
|
||||
);
|
||||
$idlist = implode(",", $idarray);
|
||||
|
||||
$r = q("UPDATE `item` SET `unseen` = 0 WHERE `unseen` AND `id` IN (%s)", $idlist);
|
||||
|
||||
|
||||
$data = array('$statuses' => $ret);
|
||||
|
|
Loading…
Reference in a new issue