From 539c0aeb04f3210654972548f51f8cf61fce49ae Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Mon, 22 Sep 2014 12:13:44 +0200 Subject: Add an option to disallow sending sharing emails to non-owncloud users Fix #10836 --- apps/files/index.php | 1 + 1 file changed, 1 insertion(+) (limited to 'apps/files/index.php') diff --git a/apps/files/index.php b/apps/files/index.php index 4142a02b97e..fbc31ac6bbd 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); -- cgit v1.2.3