aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_encryption
diff options
context:
space:
mode:
authorBjörn Schießle <bjoern@schiessle.org>2013-10-11 07:15:58 -0700
committerBjörn Schießle <bjoern@schiessle.org>2013-10-11 07:15:58 -0700
commit9a15aa8ee90f4648240a357fe6df0addb3d9d30d (patch)
treee9643959be9a7bddedcb5f33d4bd8d3509d4b6b3 /apps/files_encryption
parent034968c61243e8335a5e83c4395ec10a094fd764 (diff)
parent57beef1e36b02196b67de5d6fd41bbac7241beb0 (diff)
downloadnextcloud-server-9a15aa8ee90f4648240a357fe6df0addb3d9d30d.tar.gz
nextcloud-server-9a15aa8ee90f4648240a357fe6df0addb3d9d30d.zip
Merge pull request #5298 from owncloud/enc_fix_setting_dialog_headlines
fix setting dialog headlines for the encryption app
Diffstat (limited to 'apps/files_encryption')
-rw-r--r--apps/files_encryption/templates/settings-admin.php5
-rw-r--r--apps/files_encryption/templates/settings-personal.php8
2 files changed, 3 insertions, 10 deletions
diff --git a/apps/files_encryption/templates/settings-admin.php b/apps/files_encryption/templates/settings-admin.php
index 3a6adc09f4b..231a68b6a58 100644
--- a/apps/files_encryption/templates/settings-admin.php
+++ b/apps/files_encryption/templates/settings-admin.php
@@ -1,10 +1,7 @@
<form id="encryption">
<fieldset class="personalblock">
- <p>
- <strong><?php p($l->t('Encryption')); ?></strong>
- <br/>
- </p>
+ <h2><?php p($l->t('Encryption')); ?></h2>
<p>
<?php p($l->t("Enable recovery key (allow to recover users files in case of password loss):")); ?>
diff --git a/apps/files_encryption/templates/settings-personal.php b/apps/files_encryption/templates/settings-personal.php
index ff04556dd53..a4ed89b8a49 100644
--- a/apps/files_encryption/templates/settings-personal.php
+++ b/apps/files_encryption/templates/settings-personal.php
@@ -1,8 +1,6 @@
<form id="encryption">
<fieldset class="personalblock">
- <legend>
- <?php p( $l->t( 'Encryption' ) ); ?>
- </legend>
+ <h2><?php p( $l->t( 'Encryption' ) ); ?></h2>
<?php if ( ! $_["privateKeySet"] && $_["initialized"] ): ?>
<p>
@@ -38,9 +36,8 @@
</p>
<?php endif; ?>
- <br />
-
<?php if ( $_["recoveryEnabled"] && $_["privateKeySet"] ): ?>
+ <br />
<p>
<label for="userEnableRecovery"><?php p( $l->t( "Enable password recovery:" ) ); ?></label>
<br />
@@ -65,6 +62,5 @@
</p>
<?php endif; ?>
- <br />
</fieldset>
</form>