Use getBaseUrl() instead of detectBaseUrl()
[zf2.biz/galerie.git] / module / Application / views / error / index.phtml
index 454b615..e62262f 100644 (file)
@@ -1,14 +1,22 @@
 <h1>An error occurred</h1>
 <h2><?php echo $this->message ?></h2>
 
-<?php if (isset($this->exception)): ?>
+<?php if (isset($this->display_exceptions) && $this->display_exceptions): ?>
+
+<?php if(isset($this->exception) && $this->exception instanceof Exception): ?>
 
 <h3>Exception information:</h3>
 <p>
-    <b>Message:</b> <?php echo $this->exception->getMessage() ?>
+    <h4>Message:</h4>
+    <pre><?php echo $this->exception->getMessage() ?></pre>
+    <h4>Stack trace:</h4>
+    <pre><?php echo $this->exception->getTraceAsString() ?></pre>
 </p>
 
-<h3>Stack trace:</h3>
-<pre><?php echo $this->exception->getTraceAsString() ?></pre>
+<?php else: ?>
+
+<h3>No Exception available</h3>
 
 <?php endif ?>
+
+<?php endif ?>
\ No newline at end of file