Merge branch '1.3-misc' of git@github.com:cakephp/cakephp1x into 1.3-misc

This commit is contained in:
Mark Story 2009-12-20 16:50:48 -05:00
commit 2e96bfe833

View file

@ -729,10 +729,8 @@ class SecurityComponent extends Object {
if (is_callable(array($controller, $method))) { if (is_callable(array($controller, $method))) {
return call_user_func_array(array(&$controller, $method), empty($params) ? null : $params); return call_user_func_array(array(&$controller, $method), empty($params) ? null : $params);
} else { } else {
// Debug::warning('Callback method ' . $method . ' in controller ' . get_class($controller)
return null; return null;
} }
} }
} }
?> ?>