diff --git a/www/lib/CoreLibs/DB/SQL/PgSQL.php b/www/lib/CoreLibs/DB/SQL/PgSQL.php index c05195c2..170f943b 100644 --- a/www/lib/CoreLibs/DB/SQL/PgSQL.php +++ b/www/lib/CoreLibs/DB/SQL/PgSQL.php @@ -536,7 +536,7 @@ class PgSQL implements Interface\SqlFunctions $connection_string[] = 'sslmode=' . $db_ssl; } // connect - $this->dbh = pg_connect(join(' ', $connection_string)); + $this->dbh = @pg_connect(join(' ', $connection_string)); return $this->dbh; }