Merge branch 'patch-1' into 'develop'
Update add_comment.php: update sendUpdateNotification parameters order See merge request !150
This commit is contained in:
commit
1872204d1b
@ -70,7 +70,7 @@ if (!$poll) {
|
|||||||
$result = $pollService->addComment($poll_id, $name, $comment);
|
$result = $pollService->addComment($poll_id, $name, $comment);
|
||||||
if ($result) {
|
if ($result) {
|
||||||
$message = new Message('success', __('Comments', 'Comment added'));
|
$message = new Message('success', __('Comments', 'Comment added'));
|
||||||
$notificationService->sendUpdateNotification($poll, $mailService, $name, NotificationService::ADD_COMMENT);
|
$notificationService->sendUpdateNotification($poll, NotificationService::ADD_COMMENT, $name);
|
||||||
} else {
|
} else {
|
||||||
$message = new Message('danger', __('Error', 'Comment failed'));
|
$message = new Message('danger', __('Error', 'Comment failed'));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user