diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2014-06-03 11:29:28 +0200 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2014-06-03 11:29:28 +0200 |
commit | 8e583f55dc683e9e936a7c6b94614410145dca8c (patch) | |
tree | c4fef8e5439778d8f85c4793fe44064219797888 /apps/files/index.php | |
parent | b62cb007715e649d9656c32bfe4b42599fd96983 (diff) | |
download | nextcloud-server-8e583f55dc683e9e936a7c6b94614410145dca8c.tar.gz nextcloud-server-8e583f55dc683e9e936a7c6b94614410145dca8c.zip |
set "allow users to send mail notification for shared files default" setting to "no" now that we have the activity app
Diffstat (limited to 'apps/files/index.php')
-rw-r--r-- | apps/files/index.php | 2 |
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); |