summaryrefslogtreecommitdiffstats
path: root/system/database/drivers/odbc
diff options
context:
space:
mode:
authorTimothy Warren <tim@timshomepage.net>2011-10-10 16:10:46 +0200
committerTimothy Warren <tim@timshomepage.net>2011-10-10 16:10:46 +0200
commita2097a077474eab1b9d35acc2c93f0e99a7f12d0 (patch)
tree870eb2c4055ac44a4d3197c86854429324a33d61 /system/database/drivers/odbc
parenta2e7cd4c2f94d9b215d4e6e73be7c276ddd3eaca (diff)
Converted database constructors to PHP5 type
Diffstat (limited to 'system/database/drivers/odbc')
-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 08cd27b6c..bcd7937d9 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_driver($params);
+ parent::__construct($params);
$this->_random_keyword = ' RND('.time().')'; // database specific random keyword
}