diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2012-09-14 16:54:20 -0500 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2012-09-14 16:54:20 -0500 |
commit | ed1ec8e720a7ec3c1270cd631cc37e531f315f26 (patch) | |
tree | f229f6ff8cbad50013b9059fa4a2d6a6f05bcf05 /phpBB/includes/functions.php | |
parent | 1ab0c469e253df0e01f358a4a86e1b6df290d740 (diff) | |
download | forums-ed1ec8e720a7ec3c1270cd631cc37e531f315f26.tar forums-ed1ec8e720a7ec3c1270cd631cc37e531f315f26.tar.gz forums-ed1ec8e720a7ec3c1270cd631cc37e531f315f26.tar.bz2 forums-ed1ec8e720a7ec3c1270cd631cc37e531f315f26.tar.xz forums-ed1ec8e720a7ec3c1270cd631cc37e531f315f26.zip |
[ticket/11103] Add/Update/Mark Read functions accept an array for the type
This saves a lot of code in some areas (where the same data is sent, just
for different types)
Notifications for bookmarks
PHPBB3-11103
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r-- | phpBB/includes/functions.php | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index b996fef292..aec7759f19 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -1351,8 +1351,7 @@ function markread($mode, $forum_id = false, $topic_id = false, $post_time = 0, $ } $db->sql_freeresult($result); - $notifications->mark_notifications_read_by_parent('post', $topic_ids, $user->data['user_id'], $post_time); - $notifications->mark_notifications_read_by_parent('quote', $topic_ids, $user->data['user_id'], $post_time); + $notifications->mark_notifications_read_by_parent(array('quote', 'bookmark', 'post'), $topic_ids, $user->data['user_id'], $post_time); // Add 0 to forums array to mark global announcements correctly // $forum_id[] = 0; @@ -1450,8 +1449,7 @@ function markread($mode, $forum_id = false, $topic_id = false, $post_time = 0, $ // Mark post notifications read for this user in this topic $notifications = $phpbb_container->get('notifications'); - $notifications->mark_notifications_read_by_parent('post', $topic_id, $user->data['user_id'], $post_time); - $notifications->mark_notifications_read_by_parent('quote', $topic_id, $user->data['user_id'], $post_time); + $notifications->mark_notifications_read_by_parent(array('quote', 'bookmark', 'post'), $topic_id, $user->data['user_id'], $post_time); if ($config['load_db_lastread'] && $user->data['is_registered']) { |