diff options
author | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-01-07 21:23:14 +0100 |
---|---|---|
committer | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-01-07 21:23:14 +0100 |
commit | e475c26f1ae3adec2716b4ba59f92382db2bc24e (patch) | |
tree | 2ea2f0c587db8538440dcdb397064ca23ee8c480 /apps | |
parent | a21da9f9fd9e936eac1b3855fb0f09a00156a00f (diff) | |
download | nextcloud-server-e475c26f1ae3adec2716b4ba59f92382db2bc24e.tar.gz nextcloud-server-e475c26f1ae3adec2716b4ba59f92382db2bc24e.zip |
fixing <input> tag
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_encryption/templates/settings.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_encryption/templates/settings.php b/apps/files_encryption/templates/settings.php index 268b1a80ccd..61bfe849c72 100644 --- a/apps/files_encryption/templates/settings.php +++ b/apps/files_encryption/templates/settings.php @@ -2,7 +2,7 @@ <fieldset class="personalblock"> <legend><strong><?php echo $l->t('Encryption');?></strong></legend> <input type='checkbox'<?php if ($_['encryption_enabled']): ?> checked="checked"<?php endif; ?> - id='enable_encryption' ></input> + id='enable_encryption' /> <label for='enable_encryption'><?php echo $l->t('Enable Encryption')?></label><br /> <select id='encryption_blacklist' title="<?php echo $l->t('None')?>" multiple="multiple"> <?php foreach ($_['blacklist'] as $type): ?> |