diff --git a/control/Controller.php b/control/Controller.php index 136217ead..36a8e960f 100644 --- a/control/Controller.php +++ b/control/Controller.php @@ -182,7 +182,7 @@ class Controller extends RequestHandler implements TemplateGlobalProvider { * Controller's default action handler. It will call the method named in $Action, if that method exists. * If $Action isn't given, it will use "index" as a default. */ - public function handleAction($request, $action) { + protected function handleAction($request, $action) { foreach($request->latestParams() as $k => $v) { if($v || !isset($this->urlParams[$k])) $this->urlParams[$k] = $v; }