Set thread notifications as seen in mod/display
- Only for users without detailed notifications
This commit is contained in:
parent
8a055902f4
commit
8357d94800
|
@ -238,6 +238,10 @@ function display_content(App $a, $update = false, $update_uid = 0)
|
||||||
throw new HTTPException\NotFoundException(DI::l10n()->t('The requested item doesn\'t exist or has been deleted.'));
|
throw new HTTPException\NotFoundException(DI::l10n()->t('The requested item doesn\'t exist or has been deleted.'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!DI::pConfig()->get(local_user(), 'system', 'detailed_notif')) {
|
||||||
|
DBA::update('notify', ['seen' => true], ['parent' => $item['parent'], 'uid' => local_user()]);
|
||||||
|
}
|
||||||
|
|
||||||
// We are displaying an "alternate" link if that post was public. See issue 2864
|
// We are displaying an "alternate" link if that post was public. See issue 2864
|
||||||
$is_public = Item::exists(['id' => $item_id, 'private' => [Item::PUBLIC, Item::UNLISTED]]);
|
$is_public = Item::exists(['id' => $item_id, 'private' => [Item::PUBLIC, Item::UNLISTED]]);
|
||||||
if ($is_public) {
|
if ($is_public) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user