diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-02-08 13:27:15 -0800 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-02-08 13:27:15 -0800 |
commit | 84657cbdabf871c05df7c76625f469e0a4ac0684 (patch) | |
tree | c9402f15aa1da9fa9fa99a2e19b44a96b88b391d | |
parent | 12bdc6ddb6021f772e8e6364eee89f1406ee3d7d (diff) | |
parent | bebdd113f522adae3e51835baa5c946c37e4fbbf (diff) | |
download | nextcloud-server-84657cbdabf871c05df7c76625f469e0a4ac0684.tar.gz nextcloud-server-84657cbdabf871c05df7c76625f469e0a4ac0684.zip |
Merge pull request #1548 from owncloud/installation-improvements
Installation improvements
-rw-r--r-- | core/css/styles.css | 1 | ||||
-rw-r--r-- | core/templates/installation.php | 8 |
2 files changed, 5 insertions, 4 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index cefab2d49ff..fd74ffc5981 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -210,6 +210,7 @@ fieldset.warning { border-radius:5px; } fieldset.warning legend { color:#b94a48 !important; } +fieldset.warning a { color:#b94a48 !important; font-weight:bold; } /* Alternative Logins */ #alternative-logins legend { margin-bottom:10px; } diff --git a/core/templates/installation.php b/core/templates/installation.php index f3d232b637e..ad0d9cfbada 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -21,15 +21,15 @@ <?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']): ?> <fieldset class="warning"> <legend><strong><?php echo $l->t('Security Warning');?></strong></legend> - <span><?php echo $l->t('Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root.');?></span> + <p><?php echo $l->t('Your data directory and files are probably accessible from the internet because the .htaccess file does not work.');?><br> + <?php echo $l->t('For information how to properly configure your server, please see the <a href="http://doc.owncloud.org/server/5.0/admin_manual/installation.html" target="_blank">documentation</a>.');?></p> </fieldset> <?php endif; ?> <fieldset id="adminaccount"> |