diff options
author | Björn Schießle <schiessle@owncloud.com> | 2013-05-13 17:26:21 +0200 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2013-05-13 17:26:21 +0200 |
commit | 517efdf952526ce0f0a03107874baca18742c49b (patch) | |
tree | 0e7f10e0808c13b9142bdbdffa993bd5ca8cf2bc /apps/files_encryption/templates | |
parent | 2f4ba9d1e8ca6406abb509ad82869cfb6aca40c1 (diff) | |
download | nextcloud-server-517efdf952526ce0f0a03107874baca18742c49b.tar.gz nextcloud-server-517efdf952526ce0f0a03107874baca18742c49b.zip |
don't create a recovery user, only generate recovery key similar to the public link share key
Diffstat (limited to 'apps/files_encryption/templates')
-rw-r--r-- | apps/files_encryption/templates/settings-admin.php | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/apps/files_encryption/templates/settings-admin.php b/apps/files_encryption/templates/settings-admin.php index 863f1dfa9a5..be7beecf696 100644 --- a/apps/files_encryption/templates/settings-admin.php +++ b/apps/files_encryption/templates/settings-admin.php @@ -4,25 +4,10 @@ <p> <strong><?php p($l->t( 'Encryption' )); ?></strong> <br /> - - <?php p($l->t( "Exclude the following file types from encryption:" )); ?> - <br /> - - <select - id='encryption_blacklist' - title="<?php p($l->t( 'None' ))?>" - multiple="multiple"> - <?php foreach($_["blacklist"] as $type): ?> - <option selected="selected" value="<?php p($type); ?>"> <?php p($type); ?> </option> - <?php endforeach;?> - </select> </p> <p> - <strong> - <?php p($l->t( "Enable encryption passwords recovery account (allow sharing to recovery account):" )); ?> + <?php p($l->t( "Enable encryption passwords recovery key (allow sharing to recovery key):" )); ?> <br /> - </strong> - <?php p($l->t( "To perform a recovery log in using the 'recoveryAdmin' account and the specified password" )); ?> <br /> <?php if ( empty( $_['recoveryAdminUid'] ) ): ?> <input type="password" name="recoveryPassword" id="recoveryPassword" /> |