Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2014-03-11 00:54:23 +0400
committerThomas Müller <thomas.mueller@tmit.eu>2014-03-11 00:54:23 +0400
commitf1ecc758f5f6543566ae9970de837e5524cf8bf9 (patch)
tree33383c7105101a6429427a6134e7e90a2ab4c2e8 /core
parent1cde17d60b0f6aec8e50e31f5db8c76c92f8d1e3 (diff)
send an individual email to each recipient
Diffstat (limited to 'core')
-rw-r--r--core/ajax/share.php11
1 files changed, 9 insertions, 2 deletions
diff --git a/core/ajax/share.php b/core/ajax/share.php
index 86ee018e388..ca1951ec9ae 100644
--- a/core/ajax/share.php
+++ b/core/ajax/share.php
@@ -145,10 +145,17 @@ if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSo
}
$result = $mailNotification->sendLinkShareMail($to_address, $file, $link, $expiration);
- if($result === true) {
+ if(empty($result)) {
\OCP\JSON::success();
} else {
- \OCP\JSON::error(array('data' => array('message' => OC_Util::sanitizeHTML($result))));
+ $l = OC_L10N::get('core');
+ OCP\JSON::error(array(
+ 'data' => array(
+ 'message' => $l->t("Couldn't send mail to following users: %s ",
+ implode(', ', $result)
+ )
+ )
+ ));
}
break;