zend-session 2.8.4
Added
- Nothing.
Changed
- Nothing.
Deprecated
- Nothing.
Removed
- Nothing.
Fixed
-
#107 fixes an error raised by
ini_set()
withinSessionConfig::setStorageOption()
that occurs for certain INI values that cannot be set if the session is active. When this situation occurs, the class performs asession_write_close()
, sets the new INI value, and then restarts the session. As such, we recommend that you either set production INI values in your productionphp.ini
, and/or always pass your fully configured session manager to container instances you create. -
#105 fixes an edge case whereby if the special
__ZF
session value is a non-array value, initializing the session would result in errors. -
#102 fixes an issue introduced with 2.8.0 with
AbstractContainer::offsetGet
. Starting in 2.8.0, if the provided$key
did not exist, the method would raise an error regarding an invalid variable reference; this release provides a fix that resolves that issue.