From 79cb225ea3221eee2b6bdcc54a2e69e0c158d2c8 Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Sun, 17 Oct 2010 19:35:13 +0000 Subject: [PATCH] rm always-true isOK() check --- includes/installer/PostgresInstaller.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/includes/installer/PostgresInstaller.php b/includes/installer/PostgresInstaller.php index 75ff055ce4..c0d967727f 100644 --- a/includes/installer/PostgresInstaller.php +++ b/includes/installer/PostgresInstaller.php @@ -78,9 +78,7 @@ class PostgresInstaller extends DatabaseInstaller { } // Try to connect - if ( $status->isOK() ) { - $status->merge( $this->getConnection() ); - } + $status->merge( $this->getConnection() ); if ( !$status->isOK() ) { return $status; } -- 2.20.1