aboutsummaryrefslogtreecommitdiff
path: root/views/xml/messages/exceptions/exception.php
blob: cc899ac18b3eab785fcee1cd14123bded5476bfc (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
<?php
/**
 * Elgg exception
 * Displays a single exception
 *
 * @package Elgg
 * @subpackage Core
 * @author Curverider Ltd
 * @link http://elgg.org/
 *
 * @uses $vars['object'] An exception
 */

global $CONFIG;
?>
<!--
<?php echo get_class($vars['object']); ?>: <?php echo autop($vars['object']->getMessage()); ?>


<?php if (isset($CONFIG->debug)) { ?>
<?php

		echo print_r($vars['object'], true);

	?>
<?php } ?>

-->