Skip to content

Commit

Permalink
MINOR Doc for database configuration helper (from r98789)
Browse files Browse the repository at this point in the history
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/phpinstaller/trunk@112100 467b73ca-7a2a-4603-9d3b-597d59a354a9
  • Loading branch information
sminnee committed Oct 13, 2010
1 parent 42f5002 commit 0c0fe50
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions install.php
Expand Up @@ -50,7 +50,7 @@
}
}

// 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',
Expand All @@ -70,8 +70,9 @@
)
);

// 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');
Expand Down

0 comments on commit 0c0fe50

Please sign in to comment.