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 print_unescaped($error['hint']) ?></p> <?php endif;?> </li> <?php endforeach ?> </ul>