blob: 9fa7dc2a414a9133bc1383ea59b66ac3c8d2111c (
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="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="messages_exception">
<?php
echo nl2br(htmlentities(print_r($vars['object'], true), ENT_QUOTES, 'UTF-8'));
?>
</p>
<?php
}
|