commit | b52bdc4e9e1b21ddfd0ff3231e09042258cb1399 | [log] [tgz] |
---|---|---|
author | Derek Allard <derek.allard@ellislab.com> | Sun Jan 27 14:58:24 2008 +0000 |
committer | Derek Allard <derek.allard@ellislab.com> | Sun Jan 27 14:58:24 2008 +0000 |
tree | 22aaee4d3bcc76def4f19aec09a3ef65267c69d8 | |
parent | 1353ffb2ea331e068cddac6afe7a1fa949d207a1 [diff] |
fixed a variable call to $this->
diff --git a/system/database/drivers/odbc/odbc_driver.php b/system/database/drivers/odbc/odbc_driver.php index daecabe..604dd77 100644 --- a/system/database/drivers/odbc/odbc_driver.php +++ b/system/database/drivers/odbc/odbc_driver.php
@@ -41,7 +41,7 @@ function CI_DB_odbc_driver() { - $_random_keyword = ' RND('.time().')'; // database specific random keyword + $this->_random_keyword = ' RND('.time().')'; // database specific random keyword } /**