Hi. i have those actions in my controller:
public function newAction(){
$imp_id = $this->request->getPost('importid');
$imp_from = $this->request->getPost('import_from');
if(!$imp_id)
return $this->dispatcher->forward(['namespace' => 'Controllers\Admin', 'controller' => 'titles', 'action' => 'import']);
$this->view->titleform = new Create();
}
public function importAction(){
}
They both work fine when Router calls them but when I do "$this->dispatcher->forward" it shows a white page. if I put an echo inside "importAction" is shows that content (but only that). (Basicly it is ignoring the view).