diff options
author | Xinchen Hui <laruence@gmail.com> | 2016-11-16 15:14:33 +0800 |
---|---|---|
committer | Xinchen Hui <laruence@gmail.com> | 2016-11-16 15:14:33 +0800 |
commit | 5ae5ab83fd96ccbcc3ff8a1fe58c087a52ecf4ad (patch) | |
tree | 165afb2a59f9dda777d4b7f75620675e8655310f /ext/session/php_session.h | |
parent | 229024c7250d0a11fe9a83094a7e30b6fb83ad90 (diff) | |
parent | 0966c98eef10fdb89fb306257070580d927a4ee2 (diff) | |
download | php-git-5ae5ab83fd96ccbcc3ff8a1fe58c087a52ecf4ad.tar.gz |
Merge branch 'PHP-7.1' of git.php.net:/php-src into PHP-7.1
* 'PHP-7.1' of git.php.net:/php-src:
new entry for #2196
Improve error message
Fix test
Refactor and cleanup implementation.
Revert "Fix Bug #73461"
Revert "Protect class based session save handler"
Protect class based session save handler
Fix Bug #73461
Diffstat (limited to 'ext/session/php_session.h')
-rw-r--r-- | ext/session/php_session.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/session/php_session.h b/ext/session/php_session.h index da5e48515a..775527c2f6 100644 --- a/ext/session/php_session.h +++ b/ext/session/php_session.h @@ -205,6 +205,7 @@ typedef struct _php_ps_globals { zend_bool use_strict_mode; /* whether or not PHP accepts unknown session ids */ zend_bool lazy_write; /* omit session write when it is possible */ zend_string *session_vars; /* serialized original session data */ + zend_bool in_save_handler; /* state that if session is in save handler or not */ } php_ps_globals; typedef php_ps_globals zend_ps_globals; |