aboutsummaryrefslogtreecommitdiff
path: root/views/failsafe/messages/exceptions/exception.php
blob: c35d80c8793b400a5ae76e272e92f3f7ccff749a (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
28
29
30
31
32
33
34
35
36
37
38
<?php
/**
 * Elgg exception (failsafe mode)
 * Displays a single exception
 *
 * @package Elgg
 * @subpackage Core
 *
 * @uses $vars['object'] An exception
 */

?>

<p class="elgg-messages-exception">
	<span title="<?php echo get_class($vars['object']); ?>">
	<?php

		echo nl2br($vars['object']->getMessage());

	?>
	</span>
</p>

<?php

if (elgg_get_config('debug')) {
?>

<p class="elgg-messages-exception">
	<?php

		echo nl2br(htmlentities(print_r($vars['object'], true), ENT_QUOTES, 'UTF-8'));

	?>
</p>
<?php

}