diff options
author | Bjoern Schiessle <bjoern@schiessle.org> | 2018-12-04 19:33:30 +0100 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2019-01-30 15:25:07 +0100 |
commit | 8ed004d6ae7429c03431361c8b1bf386ed18c712 (patch) | |
tree | 8f3b0e7fa89348fe1594e7d7b6510344870274c9 /lib/private/Share20 | |
parent | ab01402599002bf1cd70e64d53669c53d7b18bc6 (diff) | |
download | nextcloud-server-8ed004d6ae7429c03431361c8b1bf386ed18c712.tar.gz nextcloud-server-8ed004d6ae7429c03431361c8b1bf386ed18c712.zip |
fix typo
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
Diffstat (limited to 'lib/private/Share20')
-rw-r--r-- | lib/private/Share20/Manager.php | 4 |
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; } |