summaryrefslogtreecommitdiffstats
path: root/system/database/drivers
diff options
context:
space:
mode:
authorTimothy Warren <tim@timshomepage.net>2011-10-10 16:10:46 +0200
committerPhil Sturgeon <email@philsturgeon.co.uk>2011-10-27 00:42:06 +0200
commit6f531dc364553975a8ea4dce85927a09f6628902 (patch)
tree7f61e9fa366ca736ac0b1efbdad48feb6f8a76a7 /system/database/drivers
parent24f325c079d33a456f15311442ed21b437df1ea7 (diff)
Converted database constructors to PHP5 type
Diffstat (limited to 'system/database/drivers')
-rw-r--r--system/database/drivers/odbc/odbc_driver.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/system/database/drivers/odbc/odbc_driver.php b/system/database/drivers/odbc/odbc_driver.php
index 81e0d7cf2..6e4ba896f 100644
--- a/system/database/drivers/odbc/odbc_driver.php
+++ b/system/database/drivers/odbc/odbc_driver.php
@@ -48,9 +48,9 @@ class CI_DB_odbc_driver extends CI_DB {
var $_random_keyword;
- function CI_DB_odbc_driver($params)
+ function __construct($params)
{
- parent::CI_DB($params);
+ parent::__construct($params);
$this->_random_keyword = ' RND('.time().')'; // database specific random keyword
}