MDL-46881 forum: Mark posts as ready properly

This commit is contained in:
Andrew Nicols 2019-01-23 11:33:17 +08:00
parent af48d8bdd6
commit 0dc54176dd

View File

@ -168,7 +168,7 @@ class send_user_notifications extends \core\task\adhoc_task {
if (get_user_preferences('forum_markasreadonnotification', 1, $this->recipient->id) == 1) {
$this->log_start("Marking posts as read");
$count = count($markposts);
forum_tp_mark_posts_read($this->recipient, $markposts);
forum_tp_mark_posts_read($this->recipient, array_keys($markposts));
$this->log_finish("Marked {$count} posts as read");
}
}