summaryrefslogtreecommitdiffstats
path: root/lib/private/Share20
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/Share20')
-rw-r--r--lib/private/Share20/Manager.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Share20/Manager.php b/lib/private/Share20/Manager.php
index beafc888c49..64fdff5277f 100644
--- a/lib/private/Share20/Manager.php
+++ b/lib/private/Share20/Manager.php
@@ -776,11 +776,11 @@ class Manager implements IManager {
try {
$failedRecipients = $this->mailer->send($message);
if(!empty($failedRecipients)) {
- $this->logger->error('Share notification mail could not be send to: ' . implode(', ', $failedRecipients));
+ $this->logger->error('Share notification mail could not be sent to: ' . implode(', ', $failedRecipients));
return false;
}
} catch (\Exception $e) {
- $this->logger->logException($e, ['message' => 'Share notification mail could not be send']);
+ $this->logger->logException($e, ['message' => 'Share notification mail could not be sent']);
return false;
}