Skip to content
Snippets Groups Projects
Commit bcd16555 authored by Jaime Pérez's avatar Jaime Pérez
Browse files

bugfix: The configuration page checks for MySQL support, instead of PDO.

We don't use the MySQL extension directly, but PDO instead. We should therefore check for the PDO extension.

This resolves #448.
parent 16ec89fc
No related branches found
No related tags found
No related merge requests found
......@@ -106,7 +106,7 @@ $functionchecks = array(
'dom_import_simplexml' => array('required', 'XML DOM'),
'preg_match' => array('required', 'RegEx support'),
'mcrypt_module_open'=> array('optional', 'MCrypt'),
'mysql_connect' => array('optional', 'MySQL support'),
'pdo_drivers' => array('optional', 'PDO Extension'),
);
if (SimpleSAML\Module::isModuleEnabled('ldap')) {
$functionchecks['ldap_bind'] = array('required_ldap', 'LDAP Extension');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment