Skip to content

Commit

Permalink
Fixing bad method call again.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Apr 30, 2010
1 parent 0daf6e4 commit 4fbed67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cake/tests/lib/reporter/cake_html_reporter.php
Expand Up @@ -36,7 +36,7 @@ class CakeHtmlReporter extends CakeBaseReporter {
*/
function CakeHtmlReporter($charset = 'utf-8', $params = array()) {
$params = array_map(array($this, '_htmlEntities'), $params);
$this->CakeBaseReporter($charset, $params);
parent::__construct($charset, $params);
}
/**
* Paints the top of the web page setting the
Expand Down

0 comments on commit 4fbed67

Please sign in to comment.