Skip to content

Commit

Permalink
Removin E_STRICT errors from dispatcher
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo committed Nov 9, 2010
1 parent b413aa9 commit 44e9783
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cake/dispatcher.php
Expand Up @@ -189,7 +189,7 @@ protected function _invoke(&$controller, $request) {
'action' => $request->params['action']
));
}
$result =& call_user_func_array(array(&$controller, $request->params['action']), $request->params['pass']);
$result = call_user_func_array(array(&$controller, $request->params['action']), $request->params['pass']);
$response = $controller->getResponse();

if ($controller->autoRender) {
Expand Down

0 comments on commit 44e9783

Please sign in to comment.