From b1fc491ae024143f1d5216f313b31f50c96529c3 Mon Sep 17 00:00:00 2001 From: Max Semenik Date: Tue, 29 Jun 2010 09:20:09 +0000 Subject: [PATCH] Fixed yet another borkage from r67707 --- includes/db/DatabasePostgres.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/db/DatabasePostgres.php b/includes/db/DatabasePostgres.php index 6500591db0..230f238deb 100644 --- a/includes/db/DatabasePostgres.php +++ b/includes/db/DatabasePostgres.php @@ -309,7 +309,7 @@ class DatabasePostgres extends DatabaseBase { $connectVars['password'] = $password; @$this->mConn = pg_connect( $this->makeConnectionString( $connectVars ) ); - if ( $this->mConn ) { + if ( !$this->mConn ) { print "FAILED TO CONNECT!"; dieout(""); } -- 2.20.1