diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-08-31 21:26:14 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-08-31 21:26:14 -0700 |
commit | b3cac5c17320af380b18552a40ff809e598668cd (patch) | |
tree | 31a2c9ddcb6f2b5b4242d808f3f077a2e38fd200 | |
parent | 81073aeb5bd86de18832d8960cb2ecbd18aa4c1e (diff) |
Suppress errors to mysql_connect(). We had this before, but it
appears to have been accidentally removed in 177a854d
-rw-r--r-- | installer/installer.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/installer/installer.php b/installer/installer.php index fedb4251..7173a7ee 100644 --- a/installer/installer.php +++ b/installer/installer.php @@ -92,7 +92,7 @@ class installer { } } - return mysql_connect($config["host"], $config["user"], $config["password"]); + return @mysql_connect($config["host"], $config["user"], $config["password"]); } static function select_db($config) { |