summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
authorPhil Sturgeon <email@philsturgeon.co.uk>2011-08-26 10:32:36 +0200
committerPhil Sturgeon <email@philsturgeon.co.uk>2011-08-26 10:32:36 +0200
commitb1099b3d3d6908a0b35a0d5a804b4b6e4fd57f66 (patch)
tree006a1cd281559f1328140c3c49244373c7edb8df /system
parente0b77de3c32599e2a42c1ade989cbe69eee0e375 (diff)
parent84d76ea2559ddd72b5d1ddbe6fa38e88d9b20c16 (diff)
Merge pull request #304 from MVUG/mvug_fixes_odbc
odbc calls 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
}