aboutsummaryrefslogtreecommitdiff
path: root/views/installation/messages/errors/list.php
blob: 506f73fec49a34c1838005eb8f183063dbcb41c9 (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
26
27
<?php
/**
 * Elgg list errors
 * Lists error messages
 *
 * @package Elgg
 * @subpackage Core
 * @author Curverider Ltd
 * @link http://elgg.org/
 *
 * @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
}