diff options
author | Björn Schießle <schiessle@owncloud.com> | 2013-05-22 18:05:12 +0200 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2013-05-22 18:05:12 +0200 |
commit | 80dea1a8c5c9bab10176d1d7b04b363a9dda4bee (patch) | |
tree | 9631cb55e57e060397c241854857c636a7309037 /apps/files_encryption/templates | |
parent | 15a3ae6db14fd021d3c9ca672a8afc98b86cf174 (diff) | |
download | nextcloud-server-80dea1a8c5c9bab10176d1d7b04b363a9dda4bee.tar.gz nextcloud-server-80dea1a8c5c9bab10176d1d7b04b363a9dda4bee.zip |
settings clean-up; There is no blacklist in the new encryption app
Diffstat (limited to 'apps/files_encryption/templates')
-rw-r--r-- | apps/files_encryption/templates/settings-personal.php | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/apps/files_encryption/templates/settings-personal.php b/apps/files_encryption/templates/settings-personal.php index 33989416d33..14e8ce960a2 100644 --- a/apps/files_encryption/templates/settings-personal.php +++ b/apps/files_encryption/templates/settings-personal.php @@ -4,28 +4,9 @@ <?php p( $l->t( 'Encryption' ) ); ?>
</legend>
- <p>
-<!-- <?php p( $l->t( 'File encryption is enabled.' ) ); ?> -->
- </p>
- <?php if ( ! empty( $_["blacklist"] ) ): ?>
- <p>
- <strong>File types</strong>
- <br />
- <?php p( $l->t( 'The following file types will not be encrypted:' ) ); ?>
- </p>
-
- <ul>
- <?php foreach( $_["blacklist"] as $type ): ?>
- <li>
- <?php p($type); ?>
- </li>
- <?php endforeach; ?>
- </ul>
- <?php endif; ?>
- <br />
<?php if ( $_["recoveryEnabled"] ): ?>
<p>
- <label for="userEnableRecovery"><?php p( $l->t( "Enable password recovery by sharing all files with administrator:" ) ); ?></label>
+ <label for="userEnableRecovery"><?php p( $l->t( "Enable password recovery by sharing all files with your administrator:" ) ); ?></label>
<br />
<em><?php p( $l->t( "Enabling this option will allow you to reobtain access to your encrypted files if your password is lost" ) ); ?></em>
<br />
|