diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-04-09 15:29:01 +0200 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-04-09 15:29:01 +0200 |
commit | 918be7963f6fa3461d612ea7ca4c9774c12f9da5 (patch) | |
tree | 499cd8b29f61866027efb403775f96dbded2c9bc /system/database/drivers/pdo | |
parent | b457a4001ce2380e97f36b0a983b477c3e31de69 (diff) |
Add a parameter to SQLite3 and PDO _close() due to CI_DB_driver being abstract
Diffstat (limited to 'system/database/drivers/pdo')
-rw-r--r-- | system/database/drivers/pdo/pdo_driver.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/system/database/drivers/pdo/pdo_driver.php b/system/database/drivers/pdo/pdo_driver.php index 45f8cc1fb..60151b900 100644 --- a/system/database/drivers/pdo/pdo_driver.php +++ b/system/database/drivers/pdo/pdo_driver.php @@ -672,9 +672,10 @@ class CI_DB_pdo_driver extends CI_DB { /** * Close DB Connection * + * @param object * @return void */ - protected function _close() + protected function _close($conn_id) { $this->conn_id = NULL; } |