Browse Source

fixed index errors in error handler

tags/2.0.0-beta
Alexander Makarov 12 years ago
parent
commit
4502d5c6ae
  1. 7
      framework/base/ErrorHandler.php

7
framework/base/ErrorHandler.php

@ -18,6 +18,8 @@ namespace yii\base;
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
use yii\util\VarDumper;
class ErrorHandler extends ApplicationComponent
{
/**
@ -252,14 +254,17 @@ class ErrorHandler extends ApplicationComponent
} else {
$cssClass = 'app expanded';
}
$hasCode = $t['file'] !== 'unknown' && is_file($t['file']);
$hasCode = isset($t['file']) && $t['file'] !== 'unknown' && is_file($t['file']);
echo "<tr class=\"trace $cssClass\"><td class=\"number\">#$n</td><td class=\"content\">";
echo '<div class="trace-file">';
if ($hasCode) {
echo '<div class="plus">+</div><div class="minus">-</div>';
}
echo '&nbsp;';
if(isset($t['file'])) {
echo $this->htmlEncode($t['file']) . '(' . $t['line'] . '): ';
}
if (!empty($t['class'])) {
echo '<strong>' . $t['class'] . '</strong>' . $t['type'];
}

Loading…
Cancel
Save