Project

General

Profile

Bug #83311

Updated by Frans Saris over 6 years ago

 
 When running in development context you are not able to open de Web -> Forms module due to a php error: 

 <pre> 
 Argument 1 passed to TYPO3\CMS\Form\Controller\AbstractBackendController::resolveResourcePaths() must be of the type array, null given, called in vendor/typo3/cms/typo3/sysext/form/Classes/Controller/FormManagerController.php on line 63 

 TypeError thrown in file 
 vendor/typo3/cms/typo3/sysext/form/Classes/Controller/AbstractBackendController.php in line 76. 

 15 TYPO3\CMS\Form\Controller\AbstractBackendController::resolveResourcePaths(NULL) 

 vendor/typo3/cms/typo3/sysext/form/Classes/Controller/FormManagerController.php: 
 00061:  
 00062:           $this->view->assign('forms', $this->getAvailableFormDefinitions()); 
 00063:           $this->view->assign('stylesheets', $this->resolveResourcePaths($this->formSettings['formManager']['stylesheets'])); 
 00064:           $this->view->assign('dynamicRequireJsModules', $this->formSettings['formManager']['dynamicRequireJsModules']); 
 00065:           $this->view->assign('formManagerAppInitialData', $this->getFormManagerAppInitialData()); 

 </pre>

Back