summaryrefslogtreecommitdiffstats
path: root/settings
diff options
context:
space:
mode:
authorBjoern Schiessle <schiessle@owncloud.com>2014-06-03 11:29:28 +0200
committerBjoern Schiessle <schiessle@owncloud.com>2014-06-03 11:29:28 +0200
commit8e583f55dc683e9e936a7c6b94614410145dca8c (patch)
treec4fef8e5439778d8f85c4793fe44064219797888 /settings
parentb62cb007715e649d9656c32bfe4b42599fd96983 (diff)
downloadnextcloud-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 'settings')
-rwxr-xr-xsettings/admin.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/admin.php b/settings/admin.php
index a0769892ef4..7b722661302 100755
--- a/settings/admin.php
+++ b/settings/admin.php
@@ -82,7 +82,7 @@ $tmpl->assign('allowLinks', OC_Appconfig::getValue('core', 'shareapi_allow_links
$tmpl->assign('enforceLinkPassword', \OCP\Util::isPublicLinkPasswordRequired());
$tmpl->assign('allowPublicUpload', OC_Appconfig::getValue('core', 'shareapi_allow_public_upload', 'yes'));
$tmpl->assign('allowResharing', OC_Appconfig::getValue('core', 'shareapi_allow_resharing', 'yes'));
-$tmpl->assign('allowMailNotification', OC_Appconfig::getValue('core', 'shareapi_allow_mail_notification', 'yes'));
+$tmpl->assign('allowMailNotification', OC_Appconfig::getValue('core', 'shareapi_allow_mail_notification', 'no'));
$tmpl->assign('sharePolicy', OC_Appconfig::getValue('core', 'shareapi_share_policy', 'global'));
$tmpl->assign('forms', array());
foreach($forms as $form) {