Is anyone else getting the following error after upgrading to 1.3.2?

Notice (8): Undefined property: SessionHelper::$_started [CORE\cake
\libs\cake_session.php, line 222]

It looks like the default $_started variable was removed between 1.3.0
and 1.3.2.

I'd recommend the following modification for line 222 of \lib
\cake_session.php:

from:
if (isset($_SESSION) && $this->_started) {

to:
if (isset($_SESSION) && isset($this->_started) && $this->_started){

Thanks

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" 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

Reply via email to