summaryrefslogtreecommitdiffstats
path: root/apps/files/index.php
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2014-06-03 16:42:44 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2014-06-03 16:42:44 +0200
commitcfc1d5623ed7d51da81b785f0ea871d0dc7c73a8 (patch)
tree3c4a7f54b58b2a3c1b8a8bbe8a7f215de05851bb /apps/files/index.php
parent714b04d06c34dfa2a8206ed8cdab448a5978a6d7 (diff)
parent5097bcc16d3dea2c4aa66699bbbb00b1734a2967 (diff)
downloadnextcloud-server-cfc1d5623ed7d51da81b785f0ea871d0dc7c73a8.tar.gz
nextcloud-server-cfc1d5623ed7d51da81b785f0ea871d0dc7c73a8.zip
Merge pull request #8840 from owncloud/share_settings
by default don't show option to send mail notifications for shares
Diffstat (limited to 'apps/files/index.php')
-rw-r--r--apps/files/index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/index.php b/apps/files/index.php
index ba46866ab19..bc74e17aee1 100644
--- a/apps/files/index.php
+++ b/apps/files/index.php
@@ -118,7 +118,7 @@ $tmpl = new OCP\Template('files', 'index', 'user');
$tmpl->assign('usedSpacePercent', (int)$storageInfo['relative']);
$tmpl->assign('isPublic', false);
$tmpl->assign("encryptedFiles", \OCP\Util::encryptedFiles());
-$tmpl->assign("mailNotificationEnabled", $config->getAppValue('core', 'shareapi_allow_mail_notification', 'yes'));
+$tmpl->assign("mailNotificationEnabled", $config->getAppValue('core', 'shareapi_allow_mail_notification', 'no'));
$tmpl->assign("allowShareWithLink", $config->getAppValue('core', 'shareapi_allow_links', 'yes'));
$tmpl->assign("encryptionInitStatus", $encryptionInitStatus);
$tmpl->assign('appNavigation', $nav);