#
8ffc0e19 |
| 02-Mar-2002 |
Zeev Suraski |
Fix a crash bug in the session module |
#
82a8d372 |
| 01-Mar-2002 |
Yasuo Ohgaki |
Added ob_get_status() to get array of buffers and it's status. (DO NOT document this function yet) Fixed crash bug with ob_end_*() function. ob_end_*() will not delete buffers that m
Added ob_get_status() to get array of buffers and it's status. (DO NOT document this function yet) Fixed crash bug with ob_end_*() function. ob_end_*() will not delete buffers that may not be deleted. php_start_ob_buffer() and php_ob_set_internal_handler() takes parameter for if the buffer created may be deleted or not. Added 3rd parameter "bool erase" to ob_start(). If FALSE, buffer may not be deleted until script finshes. Changed ob_*() function that have void return type to bool. All ob_*() functions return TRUE for success, FALSE for failure. @ - Added ob_get_status() to get array of buffers and it's status. (Yasuo) @ - Fixed crash bug with ob_end_*() function. ob_end_*() will not delete @ buffers that may not be deleted. (Yasuo) @ - Added 3rd parameter "bool erase" to ob_start(). If FALSE, buffer may not be @ deleted until script finshes. (Yasuo) @ - Changed ob_*() function that have void return type to bool. All ob_*() @ functions return TRUE for success, FALSE for failure. (Yasuo)
show more ...
|
Revision tags: php-4.1.2 |
|
#
ed6d751c |
| 07-Feb-2002 |
Sterling Hughes |
move to the ZEND_DECLARE_MODULE_GLOBALS() and ZEND_EXTERN_MODULE_GLOBALS macros |
#
ff514154 |
| 05-Feb-2002 |
foobar |
Let's be consistent and use zval instead of pval |
#
86f123ba |
| 05-Feb-2002 |
foobar |
Export php_session_start(). |
Revision tags: BEFORE_NEW_OBJECT_MODEL, PRE_ISSET_PATCH |
|
#
bd32363e |
| 03-Feb-2002 |
Yasuo Ohgaki |
Revert last commit. Last patch has problem for the 1st request. # I also found what's wrong in mod_mm.c :) # I'll fix it later since don't have much time now. |
#
4c6e58ac |
| 03-Feb-2002 |
Yasuo Ohgaki |
Fixed crash when save_path is invalid. Fixed crash when user save handler is incorrectly used. Fixed crash when session read failed. |
#
53f8b2d2 |
| 17-Jan-2002 |
Thies C. Arntzen |
@ - Don't touch any globals in session_unset() if register_globals is set @ to off. (Thies) guys, shoot me if i'm wrong, but when we have set register_globals to off we should _not
@ - Don't touch any globals in session_unset() if register_globals is set @ to off. (Thies) guys, shoot me if i'm wrong, but when we have set register_globals to off we should _not_ touch any global variables at any time, right? so all session register/unregister should only work on $HTTP_SESSION_VARS and $_SESSION. this patch fixes at least one spot where we were touching globals even with register_globals set to off.
show more ...
|
#
7dfff1a8 |
| 16-Jan-2002 |
Yasuo Ohgaki |
Export php_session_register_module/serializer |
#
47e4a02a |
| 30-Dec-2001 |
Yasuo Ohgaki |
Get rid of error message # These lines should be enabled when save handlers can be initialized # before session module initialization. |
Revision tags: php-4.1.1 |
|
#
fe811866 |
| 26-Dec-2001 |
Yasuo Ohgaki |
Fix crash with external session save handlers # This fixes only a little issue with sub modules # More fixes are needed to make sub modules work correctly. # 4.1.x also has the same probl
Fix crash with external session save handlers # This fixes only a little issue with sub modules # More fixes are needed to make sub modules work correctly. # 4.1.x also has the same problem....
show more ...
|
Revision tags: PRE_FUNC_RETURNS_OBJECT_PATCH, ChangeLog |
|
#
38933514 |
| 11-Dec-2001 |
Sebastian Bergmann |
Update headers. |
Revision tags: php-4.1.0 |
|
#
2258453b |
| 06-Dec-2001 |
Zeev Suraski |
Remove PS_DEL_VAR macro, always use PS_DEL_VARL() |
#
648648ff |
| 04-Dec-2001 |
Hartmut Holzgraefe |
proto fix |
Revision tags: php-4.1.0RC5, php-4.1.0RC4 |
|
#
a3ef7170 |
| 24-Nov-2001 |
Zeev Suraski |
Save entries in $_SESSION even if register_globals is on |
#
8c1f1f15 |
| 24-Nov-2001 |
Zeev Suraski |
Entries registered with session_register() and altered by changing $_SESSION (or $HTTP_SESSION_VARS) were not properly saved. Fixed. |
#
66be507a |
| 24-Nov-2001 |
Zeev Suraski |
whitespace |
Revision tags: php-4.1.0RC3, php-4.1.0RC2 |
|
#
f341f630 |
| 10-Nov-2001 |
Sascha Schumann |
Rewrite of unserializer which should be more maintainable and extensible. Changes pass `make test´ and a couple of custom tests. Enjoy. |
#
702e243d |
| 02-Nov-2001 |
Rui Hirokawa |
added private_no_expire mode on session patched by Yasuo Ohgaki. |
Revision tags: POST_PARAMETER_PARSING_API |
|
#
4b5527ef |
| 22-Oct-2001 |
Andrei Zmievski |
Fix ZTS build. |
#
1beb9b21 |
| 22-Oct-2001 |
Andrei Zmievski |
@- Added session_cache_expire() function. (patch from anuradha@gnu.org) |
Revision tags: PRE_PARAMETER_PARSING_API, php-4.1.0RC1 |
|
#
454d1365 |
| 18-Oct-2001 |
Sterling Hughes |
fix ws issue introduce in my use_trans_sid commit... # still getting used to emacs |
#
009b5575 |
| 18-Oct-2001 |
Sterling Hughes |
fix formatting, this line really was too long ;) |
#
4c9c90ee |
| 18-Oct-2001 |
Sterling Hughes |
force use of the session.use_trans_sid setting |
#
68925208 |
| 11-Oct-2001 |
Stig Bakken |
* zend_module_entry change: apino, debug and zts are moved first, see README.EXTENSIONS file for upgrade help. @Introduced extension version numbers (Stig) |