From 537f18195ddb9fcfc867ee234b62e919150bb3aa Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Fri, 15 Oct 2010 01:05:06 +0000 Subject: [PATCH] MINOR Show install MySQL version at 5.0+ as 4.1 does not work properly with SilverStripe (from r104705) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@112374 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- _register_database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_register_database.php b/_register_database.php index 7768830f5..8cfebec90 100644 --- a/_register_database.php +++ b/_register_database.php @@ -4,7 +4,7 @@ DatabaseAdapterRegistry::register( array( 'class' => 'MySQLDatabase', - 'title' => 'MySQL 4.1+', + 'title' => 'MySQL 5.0+', 'helperPath' => 'sapphire/dev/install/MySQLDatabaseConfigurationHelper.php', 'supported' => function_exists('mysql_connect'), )