diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-05-05 18:53:01 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-05-05 18:53:01 +0200 |
commit | 952a90f2e3ab60252b125b3e68193cc4995c0c54 (patch) | |
tree | c1c47eac13f5d03190fb57c8eaae4426e0b8ae9f /settings/templates | |
parent | 67836995011c2506e67e49e2e1857b0003f643fc (diff) | |
parent | a1b944464370da51a9fc952250c3eb597bab30ad (diff) | |
download | nextcloud-server-952a90f2e3ab60252b125b3e68193cc4995c0c54.tar.gz nextcloud-server-952a90f2e3ab60252b125b3e68193cc4995c0c54.zip |
Merge pull request #16037 from owncloud/enc_dont_disable_encryption
don't let the the user disable encryption once it was activated
Diffstat (limited to 'settings/templates')
-rw-r--r-- | settings/templates/admin.php | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 5edf4e2a9c7..638c3d7bff5 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -319,13 +319,23 @@ if ($_['cronErrors']) { href="<?php p(link_to_docs('admin-encryption')); ?>"></a> <p id="enable"> - <input type="checkbox" name="encryption_enabled" - id="encryptionEnabled" - value="1" <?php if ($_['encryptionEnabled']) print_unescaped('checked="checked"'); ?> /> + <input type="checkbox" + id="enableEncryption" + value="1" <?php if ($_['encryptionEnabled']) print_unescaped('checked="checked" disabled="disabled"'); ?> /> <label - for="encryptionEnabled"><?php p($l->t('Enable server-side encryption')); ?> <span id="startmigration_msg" class="msg"></span> </label><br/> + for="enableEncryption"><?php p($l->t('Enable server-side encryption')); ?> <span id="startmigration_msg" class="msg"></span> </label><br/> </p> + <div id="EncryptionWarning" class="warning hidden"> + <?php p($l->t('Encryption is a one way process. Once encryption is enabled, + all files from that point forward will be encrypted on the server and it + will not be possible to disable encryption at a later date. This is the final warning: + Do you really want to enable encryption?')) ?> + <input type="button" + id="reallyEnableEncryption" + value="<?php p($l->t("Enable encryption")); ?>" /> + </div> + <div id="EncryptionSettingsArea" class="<?php if (!$_['encryptionEnabled']) p('hidden'); ?>"> <div id='selectEncryptionModules' class="<?php if (!$_['encryptionReady']) p('hidden'); ?>"> <?php |