Revision tags: php-5.0.0RC3, php-5.0.0RC3RC2, php-4.3.7, php-5.0.0RC3RC1, php-4.3.7RC1, RELEASE_0_1_1 |
|
#
96132bf4 |
| 08-May-2004 |
Sara Golemon |
if statement logic would never eval to false.
|
Revision tags: php-5.0.0RC2, php-5.0.0RC2RC2, php-4.3.6, php-5.0.0RC2RC1 |
|
#
79314087 |
| 13-Apr-2004 |
Ilia Alshanetsky |
Another setting leak in session code (bug #27963).
|
#
254c8d6c |
| 13-Apr-2004 |
Ilia Alshanetsky |
Fixed bug #27963 (Session lifetime setting may leak between requests).
|
Revision tags: php-4.3.6RC3, php-4.3.6RC2, php-4.3.6RC1 |
|
#
32be6f26 |
| 29-Mar-2004 |
Wez Furlong |
Fix for Bug #26757: session.save_path defaults to bogus value on win32 Merge from branch with one main difference: the default save_path is set to the empty string on all platforms, whereas t
Fix for Bug #26757: session.save_path defaults to bogus value on win32 Merge from branch with one main difference: the default save_path is set to the empty string on all platforms, whereas the code in the branch only does so for win32.
show more ...
|
Revision tags: php-4.3.5, php-4.3.5RC4, php-5.0.0RC1, php-5.0.0RC1RC2, php-5.0.0RC1RC1, RELEASE_0_2_0 |
|
#
75f83f7b |
| 29-Feb-2004 |
Moriyoshi Koizumi |
- Fix segfaults on deserialisation of referenced variables. # ALLOC_INIT_ZVAL() initialises the type field to IS_NULL, while # MAKE_STD_ZVAL() doesn't. This caused a kind of random crash
- Fix segfaults on deserialisation of referenced variables. # ALLOC_INIT_ZVAL() initialises the type field to IS_NULL, while # MAKE_STD_ZVAL() doesn't. This caused a kind of random crash # when zval_ptr_dtor() was applied on an intact zval created by # the latter method. # # Please check relevant bugs again. There should be some that # have already been marked as bogus.
show more ...
|
#
ac92c47b |
| 24-Feb-2004 |
foobar |
Fix bug #26005 (Random "cannot change the session ini settings" errors)
|
#
4441da27 |
| 19-Feb-2004 |
foobar |
Improve error messages
|
Revision tags: php-4.3.5RC3 |
|
#
7c710a9f |
| 15-Feb-2004 |
Zeev Suraski |
Use zval_ptr_dtor() to free variables as soon as they hit refcount of 0. Note: You should not be using ZVAL_DELREF() in day to day usage. Instead, you should use zval_ptr_dtor()
Use zval_ptr_dtor() to free variables as soon as they hit refcount of 0. Note: You should not be using ZVAL_DELREF() in day to day usage. Instead, you should use zval_ptr_dtor(). Use ZVAL_DELREF() only if you're messing with the refcount directly and know what you're doing. Note #2: For clarity, if you want to initialize a new zval with a refcount of 0, it's best to do that directly, instead of using ZVAL_DELREF after allocating the zval...
show more ...
|
Revision tags: php-5.0.0b4, php-5.0.0b4RC1, php-4.3.5RC2, RELEASE_1_3b6, php_ibase_before_split, php-4.3.5RC1 |
|
#
6ac36404 |
| 09-Jan-2004 |
Wez Furlong |
export tsrm id for session globals.
|
#
dbeb4158 |
| 08-Jan-2004 |
Andi Gutmans |
- A belated happy holidays and PHP 5
|
Revision tags: php-5.0.0b3, php-5.0.0b3RC2, php-5.0.0b3RC1 |
|
#
d3639b1a |
| 14-Dec-2003 |
Ilia Alshanetsky |
Fixed bug #24693 (Allow session.use_trans_sid to be enabled/disabled from inside the script).
|
#
71f9227c |
| 07-Dec-2003 |
Derick Rethans |
- Fixed bug #26548 (Malformed HTTP dates in headers).
|
#
30b631d9 |
| 02-Dec-2003 |
Wez Furlong |
Export this so that shared session modules can use it under win32.
|
Revision tags: php-4.3.4, php-4.3.4RC3, php-5.0.0b2, RELEASE_2_0_0RC1, php-5.0.0b2RC1, php-4.3.4RC2, RELEASE_1_3b3 |
|
#
e85a4cdb |
| 08-Oct-2003 |
foobar |
- Fixed bug #25780 (ext/session: invalid session.cookie_lifetime causes crash in win32).
|
Revision tags: BEFORE_HANDLERS_RESHUFFLE, RELEASE_1_3b2, php-4.3.4RC1, RELEASE_0_7 |
|
#
394d3b82 |
| 21-Sep-2003 |
Sascha Schumann |
Alias session_commit to session_write_close, a more intuitive name for the functionality.
|
#
a3c89a2e |
| 29-Aug-2003 |
Sascha Schumann |
Fix a segfault which occured when using a storage format not capable of expressing references (e.g. WDDX) and deserializing a session variable whose name conflicted with an existing symbol in
Fix a segfault which occured when using a storage format not capable of expressing references (e.g. WDDX) and deserializing a session variable whose name conflicted with an existing symbol in the global scope. PR: #25307 Submitted by: Jani Taskinen Speling fixes: me
show more ...
|
#
20383f90 |
| 28-Aug-2003 |
Andrey Hristov |
\n at the end of the message is not needed
|
#
237da469 |
| 28-Aug-2003 |
Sascha Schumann |
format string fix
|
#
625600af |
| 26-Aug-2003 |
foobar |
- Prevent crash if non-existing save/serializer handler is tried to be used - Added the registered serializers information to MINFO.
|
Revision tags: php-4.3.3, php-4.3.3RC4 |
|
#
b9b75991 |
| 14-Aug-2003 |
Ilia Alshanetsky |
Fixed bug #25084 (Make refer check not dependant on register_globals)
|
#
93bcd55e |
| 12-Aug-2003 |
Ilia Alshanetsky |
emalloc -> safe_emalloc
|
#
22c33469 |
| 11-Aug-2003 |
Ilia Alshanetsky |
Fixed bug #22245 (References inside $_SESSION not being handled).
|
Revision tags: RELEASE_0_5_3, php-4.3.3RC3, RELEASE_0_5_2, RELEASE_1_2b5, BEFORE_ARG_INFO, php-4.3.3RC2 |
|
#
5978734f |
| 22-Jul-2003 |
Sascha Schumann |
MFB proper fix for #24592
|
#
f9a8fc0c |
| 21-Jul-2003 |
Ilia Alshanetsky |
Fixed bug #24592 (Possible crash in session extnsion, with NULL values)
|
Revision tags: php-5.0.0b1, php-4.3.3RC1 |
|
#
f68c7ff2 |
| 10-Jun-2003 |
James Cox |
updating license information in the headers.
|