From c3918595fddabd9be6363d0d89baf437e87a47d4 Mon Sep 17 00:00:00 2001 From: sharvey Date: Wed, 10 Mar 2010 05:34:29 +0000 Subject: [PATCH] MINOR Code formatting git-svn-id: svn://svn.silverstripe.com/silverstripe/open/phpinstaller/branches/2.4@100802 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- install.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) 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+',