diff options
author | Robin Appelman <icewind1991@gmail.com> | 2011-04-16 18:26:13 +0200 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2011-04-16 18:27:58 +0200 |
commit | f0e59b9043292a5abfb0b0d21763a0cd7306dad7 (patch) | |
tree | 34498f379ef00ef2afce3fe23c4d29dde9680b70 /templates | |
parent | 964a55033adba52d3004ec90a82cdb5d521a7a97 (diff) | |
download | nextcloud-server-f0e59b9043292a5abfb0b0d21763a0cd7306dad7.tar.gz nextcloud-server-f0e59b9043292a5abfb0b0d21763a0cd7306dad7.zip |
better display for server configuration errors
Diffstat (limited to 'templates')
-rw-r--r-- | templates/error.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/templates/error.php b/templates/error.php index e8f56d63bd1..5b71c1ef751 100644 --- a/templates/error.php +++ b/templates/error.php @@ -5,10 +5,12 @@ ?> <div id="login"> <img src="<?php echo image_path("", "owncloud-logo-medium-white.png"); ?>" alt="ownCloud" /> - <br/><br/><br/><br/> <ul> <?php foreach($_["errors"] as $error):?> - <li><?php echo $error ?></li> + <li class='error'> + <?php echo $error['error'] ?><br/> + <p class='hint'><?php echo $error['hint'] ?></p> + </li> <?php endforeach ?> </ul> </div> |