summaryrefslogtreecommitdiffstats
path: root/core/templates/error.php
blob: e8b7a49264fd7aae5fbd1d86e0b45e50227e532d (plain)
1
2
3
4
5
6
7
8
<ul class="error-wide">
	<?php foreach($_["errors"] as $error):?>
		<li class='error'>
			<?php p($error['error']) ?><br/>
			<p class='hint'><?php if(isset($error['hint']))print_unescaped($error['hint']) ?></p>
		</li>
	<?php endforeach ?>
</ul>