Fix __startSession being called after method rename to _startSession.

This commit is contained in:
predominant 2010-07-07 17:59:52 +10:00 committed by mark_story
parent 34a6808d5d
commit b60b077056

View file

@ -215,7 +215,7 @@ class CakeSession {
}
session_write_close();
self::__initSession();
self::$_started = self::__startSession();
self::$_started = self::_startSession();
return self::started();
}