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