diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-02-22 18:48:26 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-02-22 18:48:26 +0000 |
commit | 22a1da47f3f12a840847561146ff74d7a1f529fd (patch) | |
tree | cede226d5f75b145b8e77c9faed023f217bc424c /phpBB/db/mysql.php | |
parent | 91b48b0e2c6affc780e0e61a364e7c057ec9a9d1 (diff) | |
download | forums-22a1da47f3f12a840847561146ff74d7a1f529fd.tar forums-22a1da47f3f12a840847561146ff74d7a1f529fd.tar.gz forums-22a1da47f3f12a840847561146ff74d7a1f529fd.tar.bz2 forums-22a1da47f3f12a840847561146ff74d7a1f529fd.tar.xz forums-22a1da47f3f12a840847561146ff74d7a1f529fd.zip |
Minor correction to the connect update
git-svn-id: file:///svn/phpbb/trunk@18 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/db/mysql.php')
-rw-r--r-- | phpBB/db/mysql.php | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |