mirror of
https://github.com/php/php-src.git
synced 2024-11-29 21:04:10 +08:00
(PHP_RINIT(session)) Never return FAILURE on trivial issues from a request
startup handler
This commit is contained in:
parent
38819040b6
commit
8696442671
@ -937,7 +937,7 @@ PHP_RINIT_FUNCTION(session)
|
||||
if(PS(mod) == NULL) {
|
||||
/* current status is unusable */
|
||||
PS(nr_open_sessions) = -1;
|
||||
return FAILURE;
|
||||
return SUCCESS;
|
||||
}
|
||||
|
||||
if(INI_INT("session.auto_start")) {
|
||||
|
Loading…
Reference in New Issue
Block a user