aboutsummaryrefslogtreecommitdiff
path: root/views/installation/messages/errors/list.php
blob: 2f69213e9316dad44501c9e2e8c44dd262dba64e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
/**
 * Elgg list errors
 * Lists error messages
 *
 * @package Elgg
 * @subpackage Core
 *
 * @uses $vars['object'] An array of error messages
 */

if (!empty($vars['object']) && is_array($vars['object'])) {

?>

	<div class="messages error">

<?php
		foreach ($vars['object'] as $error) {
			echo elgg_view('messages/errors/error', array('object' => $error));
		}
?>
	</div>
<?php
}