From 73152494c17fd00b24850b129fc07c96fe876e0b Mon Sep 17 00:00:00 2001 From: sharvey Date: Tue, 2 Mar 2010 23:11:01 +0000 Subject: [PATCH] MINOR Made the database types clearer by setting the minimum version required alongside the name - e.g. "MySQL 4.1+" git-svn-id: svn://svn.silverstripe.com/silverstripe/open/phpinstaller/branches/2.4@100381 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- install.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.php b/install.php index 073fe86..0850e50 100644 --- a/install.php +++ b/install.php @@ -60,7 +60,7 @@ $otherDatabaseLocations = array( 'postgresql' => array( 'dir' => 'postgresql/code', 'class' => 'PostgreSQLDatabase', - 'title' => 'PostgreSQL' + 'title' => 'PostgreSQL 8.3+' ), 'sqlite3' => array( 'dir' => 'sqlite3/code', @@ -75,7 +75,7 @@ $otherDatabaseLocations = array( ); // MySQL support comes out of the box with sapphire -$foundDatabaseClasses = array('MySQLDatabase' => 'MySQL'); +$foundDatabaseClasses = array('MySQLDatabase' => 'MySQL 4.1+'); include_once('sapphire/dev/install/DatabaseConfigurationHelper.php'); include_once('sapphire/dev/install/MySQLDatabaseConfigurationHelper.php');