Commit 4d8d3eaf by Qiang Xue

minor fix of exception display.

parent f4a8e895
...@@ -360,7 +360,7 @@ pre .diff .change{ ...@@ -360,7 +360,7 @@ pre .diff .change{
?></h1> ?></h1>
<?php endif; ?> <?php endif; ?>
<h2><?= nl2br($handler->htmlEncode($exception->getMessage())) ?></h2> <h2><?= nl2br($handler->htmlEncode($exception->getMessage())) ?></h2>
<?php if ($exception instanceof \yii\db\Exception): ?> <?php if ($exception instanceof \yii\db\Exception && $exception->errorInfo !== null): ?>
<pre><?= var_export($exception->errorInfo, true) ?></pre> <pre><?= var_export($exception->errorInfo, true) ?></pre>
<?php endif; ?> <?php endif; ?>
<?= $handler->renderPreviousExceptions($exception) ?> <?= $handler->renderPreviousExceptions($exception) ?>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment