diff options
author | Bjoern Schiessle <bjoern@schiessle.org> | 2016-11-02 11:37:25 +0100 |
---|---|---|
committer | Bjoern Schiessle <bjoern@schiessle.org> | 2016-11-02 18:30:38 +0100 |
commit | f556c58c22405945263bc6debfa6a424e2c601cb (patch) | |
tree | 648f879e3f46214bd8e0c36f9d8b7b0971d9cbdb /settings | |
parent | 7da3ba3f91f561da664fc601b29cd7948f876f3f (diff) | |
download | nextcloud-server-f556c58c22405945263bc6debfa6a424e2c601cb.tar.gz nextcloud-server-f556c58c22405945263bc6debfa6a424e2c601cb.zip |
remove 'send mail notification' option from sharing, replaced by send-by-mail feature
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
Diffstat (limited to 'settings')
-rw-r--r-- | settings/templates/admin/sharing.php | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/settings/templates/admin/sharing.php b/settings/templates/admin/sharing.php index eed8f36dbda..db025c8f205 100644 --- a/settings/templates/admin/sharing.php +++ b/settings/templates/admin/sharing.php @@ -81,11 +81,6 @@ <label for="onlyShareWithGroupMembers"><?php p($l->t('Restrict users to only share with users in their groups'));?></label><br/> </p> <p class="<?php if ($_['shareAPIEnabled'] === 'no') p('hidden');?>"> - <input type="checkbox" name="shareapi_allow_mail_notification" id="allowMailNotification" class="checkbox" - value="1" <?php if ($_['allowMailNotification'] === 'yes') print_unescaped('checked="checked"'); ?> /> - <label for="allowMailNotification"><?php p($l->t('Allow users to send mail notification for shared files to other users'));?></label><br/> - </p> - <p class="<?php if ($_['shareAPIEnabled'] === 'no') p('hidden');?>"> <input type="checkbox" name="shareapi_exclude_groups" id="shareapiExcludeGroups" class="checkbox" value="1" <?php if ($_['shareExcludeGroups']) print_unescaped('checked="checked"'); ?> /> <label for="shareapiExcludeGroups"><?php p($l->t('Exclude groups from sharing'));?></label><br/> |