mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 17:14:44 +01:00
fixed wrong mysql version check
This commit is contained in:
parent
6a06b9c235
commit
72aadf6ec0
@ -365,7 +365,7 @@
|
||||
function phpgwapi_upgrade0_9_13_015()
|
||||
{
|
||||
/* Skip this for mysql 3.22.X in php4 at least */
|
||||
if(floor(phpversion()) == 4 && @$GLOBALS['phpgw_setup']->db->Type == 'mysql')
|
||||
if(phpversion() >= 4.0.5 && @$GLOBALS['phpgw_setup']->db->Type == 'mysql')
|
||||
{
|
||||
$_ver_str = @mysql_get_server_info();
|
||||
$_ver_arr = explode(".",$_ver_str);
|
||||
|
Loading…
Reference in New Issue
Block a user