From 0d5c05e707ab7e83f2140a0a4e39d9ca92509ce5 Mon Sep 17 00:00:00 2001 From: Antoine Musso Date: Tue, 2 May 2006 19:12:21 +0000 Subject: [PATCH] Error if mysql < 4.0.14 --- config/index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/index.php b/config/index.php index 71eceb5e8a..6b20948a35 100644 --- a/config/index.php +++ b/config/index.php @@ -592,8 +592,8 @@ if( $conf->posted && ( 0 == count( $errs ) ) ) { print "
  • Connected to $myver"; if ($conf->DBtype == 'mysql') { - if( version_compare( $myver, "4.0.0" ) < 0 ) { - die( " -- mysql 4.0 or later required. Aborting." ); + if( version_compare( $myver, "4.0.14" ) < 0 ) { + die( " -- mysql 4.0.14 or later required. Aborting." ); } $mysqlNewAuth = version_compare( $myver, "4.1.0", "ge" ); if( $mysqlNewAuth && $mysqlOldClient ) { -- 2.20.1