Actions
Bug #69225
closedDatabaseConnectionMock missing method isConnected
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Install Tool
Target version:
-
Start date:
2015-08-21
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
7
PHP Version:
5.5
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Description
Hello everybody,
If there is a failure in installtool in graphical checks, there is a "Detected Fatal Error" upcoming.
To reproduce missconfigure the GFX component and run "Convert image formats to jpg" from install tool.
typo3_src/typo3/sysext/core/Classes/Error/ErrorHandler.php (line 178) will call the isConnected Method of DatabaseConnectionMock, which is not there...
To fix, please implement TYPO3\CMS\Install\Database\DatabaseConnectionMock::isConnected():
public function isConnected() {
return true;
}
Thanks
Actions