From 26bcd5a8265353f40e04cfcc1a7bda66a55a0f2c Mon Sep 17 00:00:00 2001 From: sharvey Date: Thu, 11 Feb 2010 08:54:18 +0000 Subject: [PATCH] MINOR Removed warning that appears during installation steps (regression from recent changes) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/phpinstaller/branches/2.4@98793 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.php b/install.php index 699d34a..fd867a5 100644 --- a/install.php +++ b/install.php @@ -815,7 +815,7 @@ class Installer extends InstallRequirements { $phpVersion = urlencode(phpversion()); if($config['db']['type'] == 'MySQLDatabase') { - $conn = mysql_connect($config['db']['server'], null, null); + $conn = @mysql_connect($config['db']['server'], null, null); $databaseVersion = urlencode('MySQLDatabase: ' . mysql_get_server_info()); } else { $databaseVersion = $config['db']['type'];