From af96f8433dcd886f254c38358fa21dd2de305b0f Mon Sep 17 00:00:00 2001 From: sharvey Date: Thu, 11 Feb 2010 07:53:05 +0000 Subject: [PATCH] MINOR Doc for database configuration helper git-svn-id: svn://svn.silverstripe.com/silverstripe/open/phpinstaller/branches/2.4@98789 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- install.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/install.php b/install.php index e4ed53d..699d34a 100644 --- a/install.php +++ b/install.php @@ -50,7 +50,7 @@ if($envFileExists) { } } -// This is a listing of supported databases, so the installer knows about them +// This is a listing of known external databases $otherDatabaseLocations = array( 'mssql' => array( 'class' => 'MSSQLDatabase', @@ -70,8 +70,9 @@ $otherDatabaseLocations = array( ) ); -// MySQL support comes out of the box with sapphire - others databases -// live in their own module directories. We need to check the existance of them! +// MySQL support comes out of the box with sapphire. Other databases +// live in their own module directories. Let's find out if there +// are any installed and determine if they have a configuration helper. $foundDatabaseClasses = array('MySQLDatabase' => 'MySQL'); include_once('sapphire/dev/install/DatabaseConfigurationHelper.php'); include_once('sapphire/dev/install/MySQLDatabaseConfigurationHelper.php');