Skip to content

Commit

Permalink
Merge pull request #32632 from owncloud/email-reporting-sharing
Browse files Browse the repository at this point in the history
Concat all email addresses that had sending problems
  • Loading branch information
Vincent Petry authored Sep 7, 2018
2 parents 8f22c52 + 5e268fa commit 7c1b712
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/ajax/share.php
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ function usersInGroup($gid, $search = '', $limit = -1, $offset = 0) {
OCP\JSON::error([
'data' => [
'message' => $l->t("Couldn't send mail to following recipient(s): %s ",
\implode(', ', $result)
\implode(', ', $results)
)
]
]);
Expand Down

0 comments on commit 7c1b712

Please sign in to comment.