MINOR Code formatting (from r100802)

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/phpinstaller/trunk@112204 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
sminnee 2010-10-13 04:24:35 +00:00
parent 9fc052fe58
commit 24887b13a9

View File

@ -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 <a href="http://php.net/mssql">mssql</a> or <a href="http://www.microsoft.com/sqlserver/2005/en/us/PHP-Driver.aspx">sqlsrv</a> PHP extensions are available. Please install or enable one of them and refresh this page.');
'Neither the <a href="http://php.net/mssql">mssql</a> or <a href="http://www.microsoft.com/sqlserver/2005/en/us/PHP-Driver.aspx">sqlsrv</a> 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 <a href="http://php.net/pgsql">pgsql</a> PHP extension is not available. Please install or enable it and refresh this page.');
'The <a href="http://php.net/pgsql">pgsql</a> PHP extension is not available. Please install or enable it and refresh this page.'
);
DatabaseAdapterRegistry::register(
'SQLite3Database',
'SQLite 3.3+',