From: Chad Horohoe Date: Sun, 17 Oct 2010 19:35:13 +0000 (+0000) Subject: rm always-true isOK() check X-Git-Tag: 1.31.0-rc.0~34460 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=79cb225ea3221eee2b6bdcc54a2e69e0c158d2c8;p=lhc%2Fweb%2Fwiklou.git rm always-true isOK() check --- 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; }