diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2013-09-02 11:26:11 +0200 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2013-09-02 11:26:11 +0200 |
commit | bab63c22eea058ea619de5c021d16803ba48ab8d (patch) | |
tree | 6d0b7f2e0b343ef46f35968ac7d7c5e1ee6f4751 /apps/files_encryption/templates | |
parent | d7dca966a2a926be8b45ab337488143eac3ce9ba (diff) | |
download | nextcloud-server-bab63c22eea058ea619de5c021d16803ba48ab8d.tar.gz nextcloud-server-bab63c22eea058ea619de5c021d16803ba48ab8d.zip |
encryption error messages, distinguish between a re-enabled encryption app and a password change from outside
Diffstat (limited to 'apps/files_encryption/templates')
-rw-r--r-- | apps/files_encryption/templates/settings-personal.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/files_encryption/templates/settings-personal.php b/apps/files_encryption/templates/settings-personal.php index 38512453207..ff04556dd53 100644 --- a/apps/files_encryption/templates/settings-personal.php +++ b/apps/files_encryption/templates/settings-personal.php @@ -4,7 +4,7 @@ <?php p( $l->t( 'Encryption' ) ); ?>
</legend>
- <?php if ( ! $_["privateKeySet"] ): ?>
+ <?php if ( ! $_["privateKeySet"] && $_["initialized"] ): ?>
<p>
<a name="changePKPasswd" />
<label for="changePrivateKeyPasswd">
@@ -39,22 +39,22 @@ <?php endif; ?>
<br />
-
+
<?php if ( $_["recoveryEnabled"] && $_["privateKeySet"] ): ?>
<p>
<label for="userEnableRecovery"><?php p( $l->t( "Enable password recovery:" ) ); ?></label>
<br />
<em><?php p( $l->t( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" ) ); ?></em>
<br />
- <input
+ <input
type='radio'
name='userEnableRecovery'
value='1'
<?php echo ( $_["recoveryEnabledForUser"] == 1 ? 'checked="checked"' : '' ); ?> />
<?php p( $l->t( "Enabled" ) ); ?>
<br />
-
- <input
+
+ <input
type='radio'
name='userEnableRecovery'
value='0'
|