diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-10-16 21:25:25 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-10-16 21:25:25 +0000 |
commit | 694781d190fba09437a37983f077d0381a56050b (patch) | |
tree | 788d5eeb369d7dc85bb35adf4fd1abe86f00b504 /views/xml/messages | |
parent | d46162271a5ca3c3af690173d0abfcd1ab9f69a1 (diff) | |
download | elgg-694781d190fba09437a37983f077d0381a56050b.tar.gz elgg-694781d190fba09437a37983f077d0381a56050b.tar.bz2 |
Finished standardizing seconday views.
git-svn-id: http://code.elgg.org/elgg/trunk@3559 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/xml/messages')
-rw-r--r-- | views/xml/messages/exceptions/exception.php | 37 |
1 files changed, 17 insertions, 20 deletions
diff --git a/views/xml/messages/exceptions/exception.php b/views/xml/messages/exceptions/exception.php index eae45f397..f13457e7c 100644 --- a/views/xml/messages/exceptions/exception.php +++ b/views/xml/messages/exceptions/exception.php @@ -1,31 +1,28 @@ <?php +/** + * Elgg exception + * Displays a single exception + * + * @package Elgg + * @subpackage Core + * @author Curverider Ltd + * @link http://elgg.org/ + * + * @uses $vars['object'] An exception + */ - /** - * Elgg exception - * Displays a single exception - * - * @package Elgg - * @subpackage Core - - * @author Curverider Ltd - - * @link http://elgg.org/ - * - * @uses $vars['object'] An exception - */ - - global $CONFIG; +global $CONFIG; ?> -<!-- +<!-- <?php echo get_class($vars['object']); ?>: <?php echo autop($vars['object']->getMessage()); ?> <?php if ($CONFIG->debug) { ?> <?php - echo print_r($vars['object'], true); - - ?> + echo print_r($vars['object'], true); + + ?> <?php } ?> - + -->
\ No newline at end of file |