[Vtigercrm-commits] [vtiger-commits] r6891 - /vtigercrm/trunk/install/3confirmConfig.php
vtigercrm-commits at vtiger.fosslabs.com
vtigercrm-commits at vtiger.fosslabs.com
Mon Jun 5 07:18:55 EDT 2006
Author: don
Date: Mon Jun 5 05:18:50 2006
New Revision: 6891
Log:
check for mysql version made only for versions less than 4.1
Modified:
vtigercrm/trunk/install/3confirmConfig.php
Modified: vtigercrm/trunk/install/3confirmConfig.php
==============================================================================
--- vtigercrm/trunk/install/3confirmConfig.php (original)
+++ vtigercrm/trunk/install/3confirmConfig.php Mon Jun 5 05:18:50 2006
@@ -102,7 +102,7 @@
- specified database user, password, hostname, database type, or port is invalid.<BR>
- specified database user does not have access to connect to the database server from the host';
}
-elseif($db_type == 'mysql' && ($mysql_server_version < '4.1' || $mysql_server_version > '5.0.19'))
+elseif($db_type == 'mysql' && $mysql_server_version < '4.1')
{
$error_msg = 'MySQL version '.$mysql_server_version.' is not supported, kindly connect to MySQL 4.1.x or above';
}
More information about the vtigercrm-commits
mailing list