summaryrefslogtreecommitdiffstats
path: root/apps/encryption/templates
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2017-04-12 18:19:09 +0200
committerJoas Schilling <coding@schilljs.com>2017-04-26 13:29:42 +0200
commitb92085f2c779ba57fe5d30c79f39cd1418fe1ddb (patch)
treeb4ba4c39746da35274d94529e3aada7cf5f65898 /apps/encryption/templates
parent5b5c3a1773dab4960d41aafc4150859a308311b7 (diff)
downloadnextcloud-server-b92085f2c779ba57fe5d30c79f39cd1418fe1ddb.tar.gz
nextcloud-server-b92085f2c779ba57fe5d30c79f39cd1418fe1ddb.zip
Fix recovery checkbox label to properly point
Diffstat (limited to 'apps/encryption/templates')
-rw-r--r--apps/encryption/templates/settings-personal.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/encryption/templates/settings-personal.php b/apps/encryption/templates/settings-personal.php
index 6ab4bf6f5f4..e2bcb6813b6 100644
--- a/apps/encryption/templates/settings-personal.php
+++ b/apps/encryption/templates/settings-personal.php
@@ -53,20 +53,20 @@ script('core', 'multiselect');
<br />
<input
type='radio'
- id='userEnableRecovery'
+ id='userEnableRecoveryCheckbox'
name='userEnableRecovery'
value='1'
<?php echo ( $_["recoveryEnabledForUser"] ? 'checked="checked"' : '' ); ?> />
- <label for="userEnableRecovery"><?php p( $l->t( "Enabled" ) ); ?></label>
+ <label for="userEnableRecoveryCheckbox"><?php p( $l->t( "Enabled" ) ); ?></label>
<br />
<input
type='radio'
- id='userDisableRecovery'
+ id='userDisableRecoveryCheckbox'
name='userEnableRecovery'
value='0'
<?php echo ( $_["recoveryEnabledForUser"] === false ? 'checked="checked"' : '' ); ?> />
- <label for="userDisableRecovery"><?php p( $l->t( "Disabled" ) ); ?></label>
+ <label for="userDisableRecoveryCheckbox"><?php p( $l->t( "Disabled" ) ); ?></label>
</p>
<?php endif; ?>
</form>