#
29319a81 |
| 01-Jun-2005 |
Antony Dovgal |
fix typo (see details here: http://news.php.net/php.internals/16350)
|
#
c24900df |
| 29-May-2005 |
Ilia Alshanetsky |
Added an optional remove old session parameter to session_regenerate_id().
|
#
26d7b7fb |
| 23-May-2005 |
foobar |
CS fix
|
#
a186549e |
| 22-May-2005 |
Antony Dovgal |
fix compile warning
|
#
c1ef1055 |
| 21-May-2005 |
Rasmus Lerdorf |
Fixed bug 33072 - safemode/open_basedir check for runtime save_path change
|
#
8f5ecf6d |
| 20-May-2005 |
Antony Dovgal |
fix bug #32944 (Disabling session.use_cookies doesn't prevent reading session cookies)
|
Revision tags: RELEASE_0_3, php-5.0.4, php-4.3.11, php-5.0.4RC2 |
|
#
76e07faf |
| 24-Mar-2005 |
Antony Dovgal |
fix leak when register_long_arrays is off
|
Revision tags: php-4.3.11RC2, php-5.0.4RC1, php-4.3.11RC1, RELEASE_0_2_4, RELEASE_0_2_3, RELEASE_0_2_2 |
|
#
5b78e4c0 |
| 10-Feb-2005 |
Antony Dovgal |
hm.. fix #28324 _properly_
|
#
94982058 |
| 10-Feb-2005 |
Antony Dovgal |
fix bug #28324 (HTTP_SESSION_VARS appear when register_long_arrays is Off)
|
Revision tags: RELEASE_0_2_1, RELEASE_0_2 |
|
#
581265f4 |
| 21-Jan-2005 |
Stefan Esser |
Correctly initialize ZVAL
|
#
d7072f8a |
| 09-Jan-2005 |
Antony Dovgal |
efree(name)
|
#
c644b2a5 |
| 09-Jan-2005 |
Antony Dovgal |
fix bug #31454 (session_set_save_handler crashes PHP when supplied non-existent object ref)
|
Revision tags: php-5.0.3, php-4.3.10, SQLITE_4_3_20041227, php-5.0.3RC2 |
|
#
ad76be84 |
| 09-Dec-2004 |
Antony Dovgal |
CS changes (as suggested by Ilia)
|
#
e76824c9 |
| 09-Dec-2004 |
Antony Dovgal |
fix segfault in session_module_name() when session.save_handler is empty
|
Revision tags: php-4.3.10RC2 |
|
#
a22fa4d1 |
| 07-Dec-2004 |
Dmitry Stogov |
Fixed crash in phpinfo() after graceful Apache restart.
|
Revision tags: php-5.0.3RC1, php-4.3.10RC1, PRE_NEW_VM_GEN_PATCH |
|
#
11bcaedf |
| 04-Oct-2004 |
Andi Gutmans |
- Rename delete_global_variable() to zend_delete_global_variable()
|
#
db507dd1 |
| 04-Oct-2004 |
Andi Gutmans |
- Commit the variable fetch optimization. - Extensions which delete global variables need to use new special function - delete_global_variable() (I'm about to rename it) to remove them. -
- Commit the variable fetch optimization. - Extensions which delete global variables need to use new special function - delete_global_variable() (I'm about to rename it) to remove them. - Will post to internals@ or via commit messages if there's anything else.
show more ...
|
#
142e92bb |
| 30-Sep-2004 |
Anantha Kesari H Y |
NetWare specific stat structure access incorporated
|
#
0ea23249 |
| 30-Sep-2004 |
Antony Dovgal |
fix error message
|
#
fcd702ef |
| 30-Sep-2004 |
Antony Dovgal |
fix segfault when using unknown/unsupported save_handler and/or serialize_handler (bug #30282)
|
Revision tags: php-5.0.2, php-4.3.9, php-5.0.2RC1 |
|
#
6784176b |
| 14-Sep-2004 |
Ilia Alshanetsky |
Fixed compiler warnings.
|
Revision tags: php-4.3.9RC3, PRE_ZEND_VM_DISPATCH_PATCH |
|
#
197d6577 |
| 02-Sep-2004 |
Ilia Alshanetsky |
Fixed bug #29925 (Added a check to prevent illegal characters in session key).
|
Revision tags: php-4.3.9RC2, php-5.0.1, php-5.0.1RC2, php-4.3.9RC1, php-5.0.1RC1 |
|
#
58901970 |
| 02-Aug-2004 |
Sascha Schumann |
fix empty_string issue Patch submitted by Antony Dovgal <tony2001@phpclub.net>
|
Revision tags: RELEASE_0_1 |
|
#
56f8195f |
| 19-Jul-2004 |
Andi Gutmans |
- Nuke empty_string. It is a reminanent from the time where RETURN_FALSE() used to return "" and not bool(false). It's not worth keeping it because STR_FREE() and zval_dtor() always have
- Nuke empty_string. It is a reminanent from the time where RETURN_FALSE() used to return "" and not bool(false). It's not worth keeping it because STR_FREE() and zval_dtor() always have to check for it and it slows down the general case. In addition, it seems that empty_string has been abused quite a lot, and was used not only for setting zval's but generally in PHP code instead of "", which wasn't the intention. Last but not least, nuking empty_string should improve stability as I doubt every place correctly checked if they are not mistakenly erealloc()'ing it or calling efree() on it. NOTE: Some code is probably broken. Each extension maintainer should check and see that my changes are OK. Also, I haven't had time to touch PECL yet. Will try and do it tomorrow.
show more ...
|
Revision tags: php-5.0.0RC4, php-5.0.0, php-4.3.8 |
|
#
e5cfb1d0 |
| 10-Jul-2004 |
Andi Gutmans |
- Better stability during premature shutdown of request startup
|