diff options
author | Andrey Andreev <narf@devilix.net> | 2017-03-14 17:42:12 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2017-03-14 17:42:12 +0100 |
commit | ea0735264dfebd64858933e03a3b33323b14178e (patch) | |
tree | 466287da0885b0e02f92359c6fff099af7c552ec /system/database/drivers/mysqli | |
parent | e9d68ab58f01e15bb344a015fcce8444ea8cc247 (diff) |
Fix #5050
Diffstat (limited to 'system/database/drivers/mysqli')
-rw-r--r-- | system/database/drivers/mysqli/mysqli_driver.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/drivers/mysqli/mysqli_driver.php b/system/database/drivers/mysqli/mysqli_driver.php index 567e0da49..b59e89494 100644 --- a/system/database/drivers/mysqli/mysqli_driver.php +++ b/system/database/drivers/mysqli/mysqli_driver.php @@ -210,7 +210,7 @@ class CI_DB_mysqli_driver extends CI_DB { $this->_mysqli->close(); $message = 'MySQLi was configured for an SSL connection, but got an unencrypted connection instead!'; log_message('error', $message); - return ($this->db->db_debug) ? $this->db->display_error($message, '', TRUE) : FALSE; + return ($this->db_debug) ? $this->display_error($message, '', TRUE) : FALSE; } return $this->_mysqli; |