Could you elaborate on this? Which unrelated things?
I traced the issue to the __start function of the Session Component.
function __start(){
if ($this->__started === false) {
if ($this->__bare === 0) {
if (!$this->id() && parent::start()) {
$this->__started = true;
parent::_checkValid();
} else {
$this->__started = parent::start();
}
}
}
return $this->__started;
}
It does not even look at starting the session or checking the
useragent if the $params['bare'] is not 0. In my tests, Setting
Configure::write('Session.checkAgent', false) did not change this.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake
PHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---