ZF-6598: Zend_Application_Resource_Session break Zend_Session
Description
When unused option are set for Zend_Session, Zend_Session throw an exeption.
On the last trunk version of Zend_Application_Resource_Session, the boostrap object as been added to the options then break Zend_Session because it doesnt accept the boostrap object.
I must add this to fix the problem in the init() method of Zend_Application_Resource_Session before Zend_Session::setOptions($options); :
if (isset($options['bootstrap'])) { unset($options['bootstrap']); }
Comments
Posted by Matthew Weier O'Phinney (matthew) on 2009-05-12T08:08:13.000+0000
setOptions now no longer merges the "bootstrap" option.