summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
authorMichiel Vugteveen <info@mvug.nl>2011-08-25 21:25:12 +0200
committerMichiel Vugteveen <info@mvug.nl>2011-08-25 21:25:12 +0200
commit84d76ea2559ddd72b5d1ddbe6fa38e88d9b20c16 (patch)
treedca4f7abff374f54f98232ba308346f8e649d460 /system
parent6935931e0165aed0ef2d5bc9c0f51bf845969c35 (diff)
odbc called incorrect parent in construct
Diffstat (limited to 'system')
-rw-r--r--system/database/drivers/odbc/odbc_driver.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/drivers/odbc/odbc_driver.php b/system/database/drivers/odbc/odbc_driver.php
index 5e764e071..08cd27b6c 100644
--- a/system/database/drivers/odbc/odbc_driver.php
+++ b/system/database/drivers/odbc/odbc_driver.php
@@ -50,7 +50,7 @@ class CI_DB_odbc_driver extends CI_DB {
function CI_DB_odbc_driver($params)
{
- parent::CI_DB($params);
+ parent::CI_DB_driver($params);
$this->_random_keyword = ' RND('.time().')'; // database specific random keyword
}