Blame view

sources/core/templates/error.php 228 Bytes
03e52840d   Kload   Init
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>