Weird, not sure how my code got messed up, but you're right. Reimported that file and everything's working.
Thanks for looking at this! ~A On Jun 15, 11:05 am, John Andersen <[email protected]> wrote: > Are you sure you haven't mixed up your versions? > > My own 1.3.2 version and the API clearly states that the code in 1.3.2 > at your specified correction point, look like this: > [code] > 215 /** > 216 * Determine if Session has been started. > 217 * > 218 * @access public > 219 * @return boolean True if session has been started. > 220 */ > 221 function started() { > 222 if (isset($_SESSION) && session_id()) { > 223 return true; > 224 } > 225 return false; > 226 } > [/code] > > No mention of $_started! > Please clarify your issue! > Enjoy, > John > > On Jun 15, 12:44 am, AKim <[email protected]> wrote: > > > > > 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- Hide quoted text - > > - Show quoted text - 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
