summaryrefslogtreecommitdiffstats
path: root/core/templates/error.php
blob: c6f7706edc1dc7d9a321e4c7768f7e1c9de80e10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<div class="error">
	<h2><?php p($l->t('Error')) ?></h2>
	<ul>
	<?php foreach ($_["errors"] as $error):?>
		<li>
			<p><?php p($error['error']) ?></p>
			<?php if (isset($error['hint']) && $error['hint']): ?>
				<p class='hint'><?php p($error['hint']) ?></p>
			<?php endif;?>
		</li>
	<?php endforeach ?>
	</ul>
</div>