diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-02-08 19:59:42 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-02-08 19:59:42 +0100 |
commit | bebdd113f522adae3e51835baa5c946c37e4fbbf (patch) | |
tree | de6140f182bfca972eec027e7846f064d9b27fb6 /core/templates | |
parent | a26e66b232990ad6d767c821dc362e0453af6d62 (diff) | |
download | nextcloud-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.php | 5 |
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']): ?> |