diff options
author | Andrey Andreev <narf@devilix.net> | 2014-02-25 14:26:20 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2014-02-25 14:26:20 +0100 |
commit | f2818bd9b9be242a1c53ee839a95962a682a2e93 (patch) | |
tree | 4443fce56188c3df726717102e5f62a920fb3e3e /system/database/drivers/postgre | |
parent | 2e171023bae38735ec08bbd9cb160cee75edbc62 (diff) |
Remove error suppression usage from db_connect()
Diffstat (limited to 'system/database/drivers/postgre')
-rw-r--r-- | system/database/drivers/postgre/postgre_driver.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/database/drivers/postgre/postgre_driver.php b/system/database/drivers/postgre/postgre_driver.php index 1140d501b..6a2209755 100644 --- a/system/database/drivers/postgre/postgre_driver.php +++ b/system/database/drivers/postgre/postgre_driver.php @@ -139,7 +139,7 @@ class CI_DB_postgre_driver extends CI_DB { public function db_connect($persistent = FALSE) { if ($persistent === TRUE - && ($this->conn_id = @pg_pconnect($this->dsn)) + && ($this->conn_id = pg_pconnect($this->dsn)) && pg_connection_status($this->conn_id) === PGSQL_CONNECTION_BAD && pg_ping($this->conn_id) === FALSE ) @@ -148,7 +148,7 @@ class CI_DB_postgre_driver extends CI_DB { } else { - $this->conn_id = @pg_connect($this->dsn); + $this->conn_id = pg_connect($this->dsn); } if ($this->conn_id && ! empty($this->schema)) |