From 6fdb7e15d807e229da150ecf8e50250edcab2236 Mon Sep 17 00:00:00 2001 From: Thomas Gelf <thomas@gelf.net> Date: Tue, 18 Feb 2014 17:40:58 +0000 Subject: [PATCH] Show exception in first header to ease JS support --- application/views/scripts/error/error.phtml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/application/views/scripts/error/error.phtml b/application/views/scripts/error/error.phtml index 5421df980..44938e86d 100755 --- a/application/views/scripts/error/error.phtml +++ b/application/views/scripts/error/error.phtml @@ -1,7 +1,4 @@ -<?= $this->tabs->render($this); ?> -<div class="alert alert-danger"> - <p><?= $message ?></p> -</div> +<h1 class="alert alert-danger"><?= $message ?></h1> <?php if (isset($stackTrace)) : ?> <hr /> <pre><?= $stackTrace ?></pre>