summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorRobin Appelman <icewind1991@gmail.com>2011-04-16 18:26:13 +0200
committerRobin Appelman <icewind1991@gmail.com>2011-04-16 18:27:58 +0200
commitf0e59b9043292a5abfb0b0d21763a0cd7306dad7 (patch)
tree34498f379ef00ef2afce3fe23c4d29dde9680b70 /templates
parent964a55033adba52d3004ec90a82cdb5d521a7a97 (diff)
downloadnextcloud-server-f0e59b9043292a5abfb0b0d21763a0cd7306dad7.tar.gz
nextcloud-server-f0e59b9043292a5abfb0b0d21763a0cd7306dad7.zip
better display for server configuration errors
Diffstat (limited to 'templates')
-rw-r--r--templates/error.php6
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>