Skip to content
Snippets Groups Projects
Commit e34dbe1f authored by Bertrand Gauthier's avatar Bertrand Gauthier
Browse files

Vue par défaut affichant les erreurs : prise en compte aussi des erreurs de type Error!

parent 7f8c88f6
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
<?php if (isset($this->display_exceptions) && $this->display_exceptions): ?> <?php if (isset($this->display_exceptions) && $this->display_exceptions): ?>
<?php if(isset($this->exception) && $this->exception instanceof Exception): ?> <?php if(isset($this->exception) && ($this->exception instanceof Exception || $this->exception instanceof Error)): ?>
<hr/> <hr/>
<h2><?php echo $this->translate('Additional information') ?>:</h2> <h2><?php echo $this->translate('Additional information') ?>:</h2>
<h3><?php echo get_class($this->exception); ?></h3> <h3><?php echo get_class($this->exception); ?></h3>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment