aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2017-05-31 11:16:51 +0200
committerGitHub <noreply@github.com>2017-05-31 11:16:51 +0200
commita0f16c69ace591f4b2c86925e1bdef45eea99ad2 (patch)
tree5cc9ff332ab6e53d6fe1c3d4af844fcd581e7460 /apps
parent5f9cc5a2d512923396572b4fdb6451b652261a18 (diff)
parent864b21dd4673433e8a0f0437e6e8d229dc546984 (diff)
downloadnextcloud-server-a0f16c69ace591f4b2c86925e1bdef45eea99ad2.tar.gz
nextcloud-server-a0f16c69ace591f4b2c86925e1bdef45eea99ad2.zip
Merge pull request #5160 from nextcloud/comradekingu-patch-1
no "mail" or mid sentence "E-mail"
Diffstat (limited to 'apps')
-rw-r--r--apps/sharebymail/lib/ShareByMailProvider.php4
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;