Fixing magic method visibility on Helper.

This commit is contained in:
Mark Story 2010-04-13 23:54:21 -04:00
parent a4cf737947
commit 958578c746

View file

@ -150,7 +150,7 @@ class Helper {
* 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);
}