commit | 00c222db1e23ecc3692a5ca5664d8fc25f1789fc | [log] [tgz] |
---|---|---|
author | Andrey Andreev <narf@devilix.net> | Thu Jan 29 18:14:31 2015 +0200 |
committer | Andrey Andreev <narf@devilix.net> | Thu Jan 29 18:14:31 2015 +0200 |
tree | 4c3d8e37ecbfc289b530a7aff907f3b90c491596 | |
parent | 423518089d8e894841da75aadaf8364eb2523600 [diff] [blame] |
Fix #3529 Seems to be some really obscure PHP bug ...
diff --git a/system/libraries/Session/drivers/Session_database_driver.php b/system/libraries/Session/drivers/Session_database_driver.php index 76596f0..0ec6e34 100644 --- a/system/libraries/Session/drivers/Session_database_driver.php +++ b/system/libraries/Session/drivers/Session_database_driver.php
@@ -83,7 +83,7 @@ $CI =& get_instance(); isset($CI->db) OR $CI->load->database(); - $this->_db =& $CI->db; + $this->_db = $CI->db; if ( ! $this->_db instanceof CI_DB_query_builder) {