Increase context depth in error messages.

Fixes #3063
This commit is contained in:
mark_story 2012-07-24 23:39:48 -04:00
parent 70c714d600
commit 7d74f3e598

View file

@ -726,7 +726,7 @@ class Debugger {
$info = ''; $info = '';
foreach ((array)$data['context'] as $var => $value) { foreach ((array)$data['context'] as $var => $value) {
$context[] = "\${$var} = " . $this->exportVar($value, 1); $context[] = "\${$var} = " . $this->exportVar($value, 3);
} }
switch ($this->_outputFormat) { switch ($this->_outputFormat) {