Skip to content

Commit

Permalink
Making instance method use the instance, and not call itself statically.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Nov 26, 2010
1 parent 7013a8f commit 6d5cf96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cake/libs/debugger.php
Expand Up @@ -295,7 +295,7 @@ public function handleError($code, $description, $file = null, $line = null, $co
$data = compact(
'level', 'error', 'code', 'helpID', 'description', 'file', 'path', 'line', 'context'
);
echo self::_output($data);
echo $_this->_output($data);

if (Configure::read('log')) {
$tpl = $_this->_templates['log']['error'];
Expand Down

0 comments on commit 6d5cf96

Please sign in to comment.