diff options
author | Morris Jobke <hey@morrisjobke.de> | 2014-12-09 14:05:52 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2014-12-09 14:05:52 +0100 |
commit | bfcd5a3802030ca97836aca1e658aec434162922 (patch) | |
tree | 201c6b78cc22e61f7eb02ee3cffb5aa83068be3b /apps/files/index.php | |
parent | f53f25eafe2e7cad28eabccd7ca5acebab488170 (diff) | |
parent | 539c0aeb04f3210654972548f51f8cf61fce49ae (diff) | |
download | nextcloud-server-bfcd5a3802030ca97836aca1e658aec434162922.tar.gz nextcloud-server-bfcd5a3802030ca97836aca1e658aec434162922.zip |
Merge pull request #11214 from owncloud/issue/10836
Add an option to disallow sending sharing emails to non-owncloud users
Diffstat (limited to 'apps/files/index.php')
-rw-r--r-- | apps/files/index.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/files/index.php b/apps/files/index.php index 6635d70d008..929bc5e79da 100644 --- a/apps/files/index.php +++ b/apps/files/index.php @@ -120,6 +120,7 @@ $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', 'no')); +$tmpl->assign("mailPublicNotificationEnabled", $config->getAppValue('core', 'shareapi_allow_public_notification', 'no')); $tmpl->assign("allowShareWithLink", $config->getAppValue('core', 'shareapi_allow_links', 'yes')); $tmpl->assign("encryptionInitStatus", $encryptionInitStatus); $tmpl->assign('appNavigation', $nav); |