1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-04 16:06:00 +02:00

[ticket/14949] Pass full notification array and post data for updating

PHPBB3-14949
This commit is contained in:
Marc Alexander 2017-01-05 23:39:30 +01:00
parent 0c6c94e527
commit 0a68593dd2
No known key found for this signature in database
GPG Key ID: 50E0D2423696F995

View File

@ -456,6 +456,12 @@ class post extends \phpbb\notification\type\base
return array();
}
return array('notification_data' => $serialized_data);
$data_array = array_merge(array(
'post_time' => $post['post_time'],
'post_id' => $post['post_id'],
'topic_id' => $post['topic_id']
), $this->get_data(false));
return $data_array;
}
}