From b53e49938274837d92a56f3c45b50aca7781a7fc Mon Sep 17 00:00:00 2001 From: Kevin Date: Thu, 27 Nov 2008 11:32:05 +0000 Subject: [PATCH] version_compare fix for mysql4 with phpBB 3.0.3 --- root/install_portal/install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/root/install_portal/install.php b/root/install_portal/install.php index 624f107c..482859f4 100644 --- a/root/install_portal/install.php +++ b/root/install_portal/install.php @@ -170,7 +170,7 @@ if( $user->data['is_registered'] && $auth->acl_get('a_') ) break; case 'mysql4': - if (version_compare($db->mysql_version, '4.1.3', '>=')) + if (version_compare($db->sql_server_info(true), '4.1.3', '>=')) { $db_schema = 'mysql_41'; }