/** * This method is overriden to allow proper assignment of parameters to fake actions. * * Therefore we change the actionMethodName shortly if the called action is a "fake" action * * @return void * @see initializeArguments() */ protected function initializeActionMethodArguments() { if (!is_null($this->useActionName)) { $temp = $this->actionMethodName; $this->actionMethodName = $this->useActionName; } parent::initializeActionMethodArguments(); if (!is_null($this->useActionName)) { $this->actionMethodName = $temp; } }