summaryrefslogtreecommitdiffstats
path: root/core/templates/error.php
blob: ac91357b350e1f53a1bcadf72bf5ebfeac6fdb43 (plain)
1
2
3
4
5
6
7
8
<ul>
	<?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>