summaryrefslogtreecommitdiffstats
path: root/core/templates
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2013-02-08 19:59:42 +0100
committerJan-Christoph Borchardt <hey@jancborchardt.net>2013-02-08 19:59:42 +0100
commitbebdd113f522adae3e51835baa5c946c37e4fbbf (patch)
treede6140f182bfca972eec027e7846f064d9b27fb6 /core/templates
parenta26e66b232990ad6d767c821dc362e0453af6d62 (diff)
downloadnextcloud-server-bebdd113f522adae3e51835baa5c946c37e4fbbf.tar.gz
nextcloud-server-bebdd113f522adae3e51835baa5c946c37e4fbbf.zip
use proper HTML for other security warning too
Diffstat (limited to 'core/templates')
-rw-r--r--core/templates/installation.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/core/templates/installation.php b/core/templates/installation.php
index 360be496463..ad0d9cfbada 100644
--- a/core/templates/installation.php
+++ b/core/templates/installation.php
@@ -21,9 +21,8 @@
<?php if(!$_['secureRNG']): ?>
<fieldset class="warning">
<legend><strong><?php echo $l->t('Security Warning');?></strong></legend>
- <span><?php echo $l->t('No secure random number generator is available, please enable the PHP OpenSSL extension.');?></span>
- <br/>
- <span><?php echo $l->t('Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account.');?></span>
+ <p><?php echo $l->t('No secure random number generator is available, please enable the PHP OpenSSL extension.');?><br/>
+ <?php echo $l->t('Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account.');?></p>
</fieldset>
<?php endif; ?>
<?php if(!$_['htaccessWorking']): ?>