From 22a1da47f3f12a840847561146ff74d7a1f529fd Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Thu, 22 Feb 2001 18:48:26 +0000 Subject: [PATCH] Minor correction to the connect update git-svn-id: file:///svn/phpbb/trunk@18 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/db/mysql.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/db/mysql.php b/phpBB/db/mysql.php index e8205853f2..e0a95773f4 100644 --- a/phpBB/db/mysql.php +++ b/phpBB/db/mysql.php @@ -49,7 +49,7 @@ class sql_db } else { - echo $this->db_connect_id = @mysql_connect($this->server, $this->user, $this->password); + $this->db_connect_id = @mysql_connect($this->server, $this->user, $this->password); } if($this->db_connect_id) {