diff options
author | Andrey Andreev <narf@devilix.net> | 2015-01-15 17:01:41 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2015-01-15 17:01:41 +0100 |
commit | 7f8eb360e80449c81be425f06cef60666e32fe21 (patch) | |
tree | ee4b2f7872ed49cc1a2a15cb6acb7856abcd8528 | |
parent | e9ca012ca64e6a589de1425052d4c733404291d0 (diff) |
[ci skip] Add a note about sess_table_name
-rw-r--r-- | system/libraries/Session/drivers/Session_database_driver.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/system/libraries/Session/drivers/Session_database_driver.php b/system/libraries/Session/drivers/Session_database_driver.php index d378d537f..42ff96b7c 100644 --- a/system/libraries/Session/drivers/Session_database_driver.php +++ b/system/libraries/Session/drivers/Session_database_driver.php @@ -104,6 +104,7 @@ class CI_Session_database_driver extends CI_Session_driver implements SessionHan $this->_platform = 'postgre'; } + // Note: BC work-around for the old 'sess_table_name' setting, should be removed in the future. isset($this->_config['save_path']) OR $this->_config['save_path'] = config_item('sess_table_name'); } |