Project

General

Profile

Bug #85915

Updated by Stephan Großberndt over 5 years ago

On attempt to update a static database table in extension manager an exception is thrown #1342864081: Extension Array is not available (see screenshot). 
 Tested on 8.7.17 and don't seem to be fixed in 8.7.18 and 8.7.19 

 Can be fixed by changing 
 <pre> 
 $this->installUtility->processExtensionSetup($extension); 
 </pre> 
 to  
 <pre> 
 $this->installUtility->processExtensionSetup($extension['key']); 
 </pre> 
 in typo3/sysext/extensionmanager/Classes/Controller/ActionController.php on line 193 

 !extension manager bug.jpg! 

Back