summaryrefslogtreecommitdiffstats
path: root/system/database/drivers/odbc
diff options
context:
space:
mode:
authorTimothy Warren <tim@timshomepage.net>2012-05-23 14:14:33 +0200
committerTimothy Warren <tim@timshomepage.net>2012-05-23 14:14:33 +0200
commitae9475557c1968826aee0fa5554899c8329412c2 (patch)
treed457bcad3afa889602023b53a7e128a27e3ccf10 /system/database/drivers/odbc
parent4b5616d5dc6ce118a472333b59f23e6eaf735144 (diff)
parentf46e726cfb726da2ec2095011ffe8625b6f9c816 (diff)
Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into email
Diffstat (limited to 'system/database/drivers/odbc')
-rw-r--r--system/database/drivers/odbc/odbc_driver.php7
1 files changed, 3 insertions, 4 deletions
diff --git a/system/database/drivers/odbc/odbc_driver.php b/system/database/drivers/odbc/odbc_driver.php
index e36f2d233..e3172117a 100644
--- a/system/database/drivers/odbc/odbc_driver.php
+++ b/system/database/drivers/odbc/odbc_driver.php
@@ -402,15 +402,14 @@ class CI_DB_odbc_driver extends CI_DB {
/**
* Close DB Connection
*
- * @param resource
* @return void
*/
- protected function _close($conn_id)
+ protected function _close()
{
- @odbc_close($conn_id);
+ @odbc_close($this->conn_id);
}
}
/* End of file odbc_driver.php */
-/* Location: ./system/database/drivers/odbc/odbc_driver.php */
+/* Location: ./system/database/drivers/odbc/odbc_driver.php */ \ No newline at end of file