diff options
author | comradekingu <epost@anotheragency.no> | 2017-05-29 18:16:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-29 18:16:09 +0200 |
commit | 864b21dd4673433e8a0f0437e6e8d229dc546984 (patch) | |
tree | e072a24f8af9f54189ac20943b97c2b8dfe93276 /apps | |
parent | 4be17dff0f9846d32f9740e7d7766bdbc1e98b51 (diff) | |
download | nextcloud-server-864b21dd4673433e8a0f0437e6e8d229dc546984.tar.gz nextcloud-server-864b21dd4673433e8a0f0437e6e8d229dc546984.zip |
no "mail" or mid sentence "E-mail"
Diffstat (limited to 'apps')
-rw-r--r-- | apps/sharebymail/lib/ShareByMailProvider.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/sharebymail/lib/ShareByMailProvider.php b/apps/sharebymail/lib/ShareByMailProvider.php index 3f618678ce1..3bcd1512c41 100644 --- a/apps/sharebymail/lib/ShareByMailProvider.php +++ b/apps/sharebymail/lib/ShareByMailProvider.php @@ -353,10 +353,10 @@ class ShareByMailProvider implements IShareProvider { $this->removeShareFromTable($shareId); throw $hintException; } catch (\Exception $e) { - $this->logger->error('Failed to send share by mail: ' . $e->getMessage()); + $this->logger->error('Failed to send share by email: ' . $e->getMessage()); $this->removeShareFromTable($shareId); throw new HintException('Failed to send share by mail', - $this->l->t('Failed to send share by E-mail')); + $this->l->t('Failed to send share by email')); } return $shareId; |