using \PDO instead PDO (bugfix)

This commit is contained in:
Philipp Holzer 2018-05-04 19:48:01 +02:00
parent e5a6e7b449
commit 7e28e3e5f4
1 changed files with 1 additions and 1 deletions

View File

@ -274,7 +274,7 @@ class Install extends BaseObject
$ck_funcs[3]['status'] = false;
$ck_funcs[3]['help'] = L10n::t('Error: PDO or MySQLi PHP module required but not installed.');
}
if (!function_exists('mysqli_connect') && class_exists('pdo') && !in_array('mysql', PDO::getAvailableDrivers())) {
if (!function_exists('mysqli_connect') && class_exists('pdo') && !in_array('mysql', \PDO::getAvailableDrivers())) {
$ck_funcs[3]['status'] = false;
$ck_funcs[3]['help'] = L10n::t('Error: The MySQL driver for PDO is not installed.');
}