From f9001679039b018fabc4fcdc8abf86ac4d871802 Mon Sep 17 00:00:00 2001 From: Miles Lott Date: Mon, 29 Apr 2002 20:45:38 +0000 Subject: [PATCH] php3 fix --- phpgwapi/setup/tables_update_0_9_14.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/setup/tables_update_0_9_14.inc.php b/phpgwapi/setup/tables_update_0_9_14.inc.php index 43c1cb473e..cd4343f063 100644 --- a/phpgwapi/setup/tables_update_0_9_14.inc.php +++ b/phpgwapi/setup/tables_update_0_9_14.inc.php @@ -365,7 +365,7 @@ function phpgwapi_upgrade0_9_13_015() { /* Skip this for mysql 3.22.X in php4 at least */ - if(phpversion() >= 4.0.5 && @$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);