diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-05-23 11:27:17 +0200 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-05-23 11:27:17 +0200 |
commit | 79922c0d963de9728315db02deaf4d2516c94d5b (patch) | |
tree | 4e88347e682e05b9c73bfe91d43256775ea83343 /system/database/DB_result.php | |
parent | 32593f9aa821a80f5e9fc2dbbae0b4f5f1078dd8 (diff) |
Removed the parameter use in database drivers' _close() and added a default _close() method in CI_DB_driver + some changelog fixes
Diffstat (limited to 'system/database/DB_result.php')
-rw-r--r-- | system/database/DB_result.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/system/database/DB_result.php b/system/database/DB_result.php index 25b4fb911..690734b08 100644 --- a/system/database/DB_result.php +++ b/system/database/DB_result.php @@ -378,11 +378,10 @@ class CI_DB_result { public function unbuffered_row($type = 'object') { return ($type !== 'array') ? $this->_fetch_object() : $this->_fetch_assoc(); - } // -------------------------------------------------------------------- - + /** * The following functions are normally overloaded by the identically named * methods in the platform-specific driver -- except when query caching |