diff --git a/install.php b/install.php index 63ccda7..bcfcbc4 100644 --- a/install.php +++ b/install.php @@ -73,21 +73,26 @@ DatabaseAdapterRegistry::register( 'MySQLDatabase', 'MySQL 4.1+', 'sapphire/dev/install/MySQLDatabaseConfigurationHelper.php', - function_exists('mysql_connect')); + function_exists('mysql_connect') +); + DatabaseAdapterRegistry::register( 'MSSQLDatabase', 'SQL Server 2008', 'mssql/code/MSSQLDatabaseConfigurationHelper.php', function_exists('mssql_connect') || function_exists('sqlsrv_connect'), null, - 'Neither the mssql or sqlsrv PHP extensions are available. Please install or enable one of them and refresh this page.'); + 'Neither the mssql or sqlsrv PHP extensions are available. Please install or enable one of them and refresh this page.' +); + DatabaseAdapterRegistry::register( 'PostgreSQLDatabase', 'PostgreSQL 8.3+', 'postgresql/code/PostgreSQLDatabaseConfigurationHelper.php', function_exists('pg_query'), null, - 'The pgsql PHP extension is not available. Please install or enable it and refresh this page.'); + 'The pgsql PHP extension is not available. Please install or enable it and refresh this page.' +); DatabaseAdapterRegistry::register( 'SQLite3Database', 'SQLite 3.3+',