99675b46e9
There's no need to have those unescaped from what I can see. Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
10 lines
283 B
PHP
10 lines
283 B
PHP
<ul class="error-wide">
|
|
<?php foreach($_["errors"] as $error):?>
|
|
<li class='error'>
|
|
<?php p($error['error']) ?><br>
|
|
<?php if(isset($error['hint']) && $error['hint']): ?>
|
|
<p class='hint'><?php p($error['hint']) ?></p>
|
|
<?php endif;?>
|
|
</li>
|
|
<?php endforeach ?>
|
|
</ul>
|