Added succes message for PDO

This commit is contained in:
TimZ99 2020-05-25 19:01:41 +02:00
parent 9df07785e3
commit b8a9d6ec22
No known key found for this signature in database
GPG Key ID: 4D8268DC68E8339D
1 changed files with 2 additions and 0 deletions

View File

@ -101,6 +101,8 @@ class InstallController extends AbstractController
if (!in_array('mysql', \PDO::getAvailableDrivers())) {
$errors++;
$this->addMessage('The PDO MySQL driver needs to be installed.', 'error');
} else {
$this->addMessage('PHP PDO MySQL driver found', 'success');
}
if (!extension_loaded('filter')) {
$this->addMessage('PHP is installed without the filter module. Please install filter.', 'warning');