Skip to content

Commit

Permalink
Fixing magic method visibility on Helper.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Apr 14, 2010
1 parent a4cf737 commit 958578c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cake/libs/view/helper.php
Expand Up @@ -150,7 +150,7 @@ public function __construct() {
* Default overload methods
*
*/
protected function __call($method, $params) {
public function __call($method, $params) {
trigger_error(sprintf(__('Method %1$s::%2$s does not exist', true), get_class($this), $method), E_USER_WARNING);
}

Expand Down

0 comments on commit 958578c

Please sign in to comment.