summaryrefslogtreecommitdiffstats
path: root/core/templates/error.php
blob: 030fbf07fcb2132e2d380890599dc1b3388c730e (plain)
1
2
3
4
5
6
7
8
9
10
<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 print_unescaped($error['hint']) ?></p>
			<?php endif;?>
		</li>
	<?php endforeach ?>
</ul>