summaryrefslogtreecommitdiffstats
path: root/system/libraries/Session/drivers/Session_native.php
diff options
context:
space:
mode:
authordchill42 <dchill42@gmail.com>2012-07-30 20:53:11 +0200
committerdchill42 <dchill42@gmail.com>2012-07-30 20:53:11 +0200
commitc58722535e0358367f351c168480ef98a033264c (patch)
tree1c9de313b982c4e1c7052a2f3ba827af3e40ec64 /system/libraries/Session/drivers/Session_native.php
parent77ee3fdac34d317b600a269e0b845588c88fa4c5 (diff)
Fixed _parent references and several minor bugs
Diffstat (limited to 'system/libraries/Session/drivers/Session_native.php')
-rwxr-xr-xsystem/libraries/Session/drivers/Session_native.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Session/drivers/Session_native.php b/system/libraries/Session/drivers/Session_native.php
index 8388e06b5..27db942eb 100755
--- a/system/libraries/Session/drivers/Session_native.php
+++ b/system/libraries/Session/drivers/Session_native.php
@@ -39,7 +39,7 @@ class CI_Session_native extends CI_Session_driver {
foreach (array('sess_cookie_name', 'sess_expire_on_close', 'sess_expiration', 'sess_match_ip',
'sess_match_useragent', 'cookie_prefix', 'cookie_path', 'cookie_domain') as $key)
{
- $config[$key] = isset($this->parent->params[$key]) ? $this->parent->params[$key] : $CI->config->item($key);
+ $config[$key] = isset($this->_parent->params[$key]) ? $this->_parent->params[$key] : $CI->config->item($key);
}
// Set session name, if specified