You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

12 lines
524 B

<?php if (isset($errors)): ?>
<div class="alert alert-danger">
<button type="button" class="close" data-dismiss="alert">&times;</button>
<h3><span class="glyphicon glyphicon-warning-sign"></span>
<strong><?php echo $lang['error_headline']; ?></strong></h3>
<ul>
<?php foreach ($errors as $error): ?>
<li><?php if (isset($lang[$error])) echo $lang[$error]; else echo $error; ?></li>
<?php endforeach; ?>
</ul>
</div>
<?php endif; ?>