aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/notification/type/type_interface.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/type_interface.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/type_interface.php')
-rw-r--r--phpBB/phpbb/notification/type/type_interface.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/notification/type/type_interface.php b/phpBB/phpbb/notification/type/type_interface.php
index 9b4446ac47..f9f832bdda 100644
--- a/phpBB/phpbb/notification/type/type_interface.php
+++ b/phpBB/phpbb/notification/type/type_interface.php
@@ -206,7 +206,7 @@ interface type_interface
* @param bool $return True to return a string containing the SQL code to update this item, False to execute it (Default: False)
* @return string
*/
- public function mark_read($return);
+ public function mark_read($return = false);
/**
* Mark this item unread
@@ -214,5 +214,5 @@ interface type_interface
* @param bool $return True to return a string containing the SQL code to update this item, False to execute it (Default: False)
* @return string
*/
- public function mark_unread($return);
+ public function mark_unread($return = false);
}