Ver código fonte

! Bump the installer to require MySQL 5.0.3 instead of a very old version. There are things we are looking to do that require 5.0.3 as a flat minimum.

Signed-off-by: Peter Spicer <[email protected]>
Peter Spicer 11 anos atrás
pai
commit
f333434819
1 arquivos alterados com 4 adições e 4 exclusões
  1. 4 4
      other/install.php

+ 4 - 4
other/install.php

@@ -23,7 +23,7 @@ $GLOBALS['required_php_version'] = '5.1.0';
 $databases = array(
 	'mysqli' => array(
 		'name' => 'MySQLi',
-		'version' => '4.0.18',
+		'version' => '5.0.3',
 		'version_check' => 'return min(mysqli_get_server_info($db_connection), mysqli_get_client_info());',
 		'supported' => function_exists('mysqli_connect'),
 		'default_user' => 'mysql.default_user',
@@ -31,7 +31,7 @@ $databases = array(
 		'default_host' => 'mysql.default_host',
 		'default_port' => 'mysql.default_port',
 		'utf8_support' => true,
-		'utf8_version' => '4.1.0',
+		'utf8_version' => '5.0.3',
 		'utf8_version_check' => 'return mysqli_get_server_info($db_connection);',
 		'utf8_default' => true,
 		'utf8_required' => false,
@@ -43,7 +43,7 @@ $databases = array(
 	),
 	'mysql' => array(
 		'name' => 'MySQL',
-		'version' => '4.0.18',
+		'version' => '5.0.3',
 		'version_check' => 'return min(mysql_get_server_info(), mysql_get_client_info());',
 		'supported' => function_exists('mysql_connect'),
 		'default_user' => 'mysql.default_user',
@@ -51,7 +51,7 @@ $databases = array(
 		'default_host' => 'mysql.default_host',
 		'default_port' => 'mysql.default_port',
 		'utf8_support' => true,
-		'utf8_version' => '4.1.0',
+		'utf8_version' => '5.0.3',
 		'utf8_version_check' => 'return mysql_get_server_info();',
 		'utf8_default' => true,
 		'utf8_required' => false,