#488 Replaced mysql extension with mysqli

SVN:trunk[1630]
This commit is contained in:
Romain Quetiez
2011-10-10 15:42:10 +00:00
parent 48cb402874
commit bdebb33822
2 changed files with 61 additions and 45 deletions

View File

@@ -137,7 +137,7 @@ function CheckPHPVersion(SetupWebPage $oP)
$aErrors[] = "Error: The current PHP Version (".phpversion().") is lower than the minimum required version (".PHP_MIN_VERSION.")";
$bResult = false;
}
$aMandatoryExtensions = array('mysql', 'iconv', 'simplexml', 'soap', 'hash', 'json', 'session', 'pcre', 'dom');
$aMandatoryExtensions = array('mysqli', 'iconv', 'simplexml', 'soap', 'hash', 'json', 'session', 'pcre', 'dom');
$aOptionalExtensions = array('mcrypt' => 'Strong encryption will not be used.',
'ldap' => 'LDAP authentication will be disabled.');
asort($aMandatoryExtensions); // Sort the list to look clean !