aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/notification/type/base.php
diff options
context:
space:
mode:
authorTristan Darricau <tristan.darricau@sensiolabs.com>2015-08-08 17:43:15 +0200
committerTristan Darricau <tristan.darricau@sensiolabs.com>2015-08-08 19:18:18 +0200
commit05d583bba7faaf82487305e892f7758d4161f303 (patch)
tree0aa476cb131f265abc88dfa1d5b194c348284b7c /phpBB/phpbb/notification/type/base.php
parentec270713d0f33531e9fd4b38ca0d5cc1f902aef3 (diff)
downloadforums-05d583bba7faaf82487305e892f7758d4161f303.tar
forums-05d583bba7faaf82487305e892f7758d4161f303.tar.gz
forums-05d583bba7faaf82487305e892f7758d4161f303.tar.bz2
forums-05d583bba7faaf82487305e892f7758d4161f303.tar.xz
forums-05d583bba7faaf82487305e892f7758d4161f303.zip
[ticket/14079] Correctly mark notifications as read
PHPBB3-14079
Diffstat (limited to 'phpBB/phpbb/notification/type/base.php')
-rw-r--r--phpBB/phpbb/notification/type/base.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/notification/type/base.php b/phpBB/phpbb/notification/type/base.php
index 06f7f9c615..31e853d7d9 100644
--- a/phpBB/phpbb/notification/type/base.php
+++ b/phpBB/phpbb/notification/type/base.php
@@ -503,7 +503,7 @@ abstract class base implements \phpbb\notification\type\type_interface
}
else
{
- $this->notification_manager->mark_notifications($this->get_type(), (int) $this->item_id, (int) $this->user_id, $this->notification_read);
+ $this->notification_manager->mark_notifications($this->get_type(), (int) $this->item_id, (int) $this->user_id, false, $this->notification_read);
}
}