summaryrefslogtreecommitdiffstats
path: root/core/templates/error.php
blob: 3305f3fba9c54f73c032ca4e2808aa7791fc10f2 (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']))p($error['hint']) ?></p>
		</li>
	<?php endforeach ?>
</ul>