diff --git a/phpgwapi/setup/tables_current.inc.php b/phpgwapi/setup/tables_current.inc.php index 59a7c45dda..bd84af49c0 100644 --- a/phpgwapi/setup/tables_current.inc.php +++ b/phpgwapi/setup/tables_current.inc.php @@ -370,21 +370,4 @@ 'uc' => array() ) ); - - /* Try to fix this unfortunate case for mysql 3.22.X in php4 at least */ - if(phpversion() >= '4.0.5' && @$GLOBALS['phpgw_setup']->db->Type == 'mysql') - { - $_ver_str = @mysql_get_server_info(); - $_ver_arr = explode(".",$_ver_str); - $_ver = $_ver_arr[1]; - if((int)$_ver < 23) - { - $phpgw_baseline['lang']['fd']['message_id'] = array( - 'type' => 'varchar', - 'precision' => 150, - 'nullable' => false, - 'default' => '' - ); - } - } ?>