diff options
Diffstat (limited to 'phpBB/phpbb')
| -rw-r--r-- | phpBB/phpbb/notification/type/post.php | 8 | 
1 files changed, 7 insertions, 1 deletions
diff --git a/phpBB/phpbb/notification/type/post.php b/phpBB/phpbb/notification/type/post.php index b9afc6d70a..03221e7c7a 100644 --- a/phpBB/phpbb/notification/type/post.php +++ b/phpBB/phpbb/notification/type/post.php @@ -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;  	}  }  | 
