diff options
Diffstat (limited to 'core/templates/error.php')
-rw-r--r-- | core/templates/error.php | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/core/templates/error.php b/core/templates/error.php index b5e8c8eab3f..929e8dd3984 100644 --- a/core/templates/error.php +++ b/core/templates/error.php @@ -1,10 +1,13 @@ -<ul class="error-wide"> +<div class="error"> + <h2><?php p($l->t('Error')) ?></h2> + <ul> <?php foreach($_["errors"] as $error):?> - <li class='error'> - <?php p($error['error']) ?><br> + <li> + <p><?php p($error['error']) ?></p> <?php if(isset($error['hint']) && $error['hint']): ?> <p class='hint'><?php p($error['hint']) ?></p> <?php endif;?> </li> <?php endforeach ?> -</ul> + </ul> +</div> |