Ok, traced it down to the bare variable and these lines in the session
component:
00295 function __start(){
00296 if ($this->__started === false) {
00297 if ($this->__bare === 0) {
00298 if (!$this->id() && parent::start()) {
00299 $this->__started = true;
00300 parent::_checkValid();
00301 } else {
00302 $this->__started = parent::start();
00303 }
00304 }
00305 }
00306 return $this->__started;
00307 }
Is this intended functionality? What if the call needs to maintain a
session state, but is a bare = 1, like an ajax call?
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---