Browse Source

Fixed errorexception trace type.

tags/2.0.0-beta
Qiang Xue 12 years ago
parent
commit
f2027c1cdd
  1. 4
      framework/base/ErrorException.php

4
framework/base/ErrorException.php

@ -44,8 +44,10 @@ class ErrorException extends Exception
} }
// XDebug < 2.1.1: http://bugs.xdebug.org/view.php?id=695 // XDebug < 2.1.1: http://bugs.xdebug.org/view.php?id=695
if (!isset($frame['type'])) { if (!isset($frame['type']) || $frame['type'] === 'static') {
$frame['type'] = '::'; $frame['type'] = '::';
} elseif ($frame['type'] === 'dynamic') {
$frame['type'] = '->';
} }
// XDebug has a different key name // XDebug has a different key name

Loading…
Cancel
Save