Skip to content

Commit

Permalink
Merge branch 'release/1.1.11'
Browse files Browse the repository at this point in the history
  • Loading branch information
romaninsh committed Feb 18, 2017
2 parents 34a7252 + 833c4f8 commit 16992e7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.1.11

- Display object with the exception dump. #38

## 1.1.10

- prevent looping by calling normalizeClass in the API that may also
Expand Down
4 changes: 2 additions & 2 deletions src/Exception.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public function getColorfulText()
$in_atk = true;
$escape_frame = false;

foreach ($this->getTrace() as $call) {
foreach ($this->getMyTrace() as $call) {
if (!isset($call['file'])) {
$call['file'] = '';
} elseif (
Expand Down Expand Up @@ -179,7 +179,7 @@ public function getHTML()
$in_atk = true;
$escape_frame = false;

foreach ($this->getTrace() as $call) {
foreach ($this->getMyTrace() as $call) {
if (!isset($call['file'])) {
$call['file'] = '';
} elseif (
Expand Down

0 comments on commit 16992e7

Please sign in to comment.