History log of /PHP-5.5/ext/session/session.c (Results 301 – 325 of 592)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# b5660126 06-Mar-2002 Sascha Schumann

Do the estrdups after checking for parameter constraints.

No real memory leaks though, because they are catched by the
memory manager.


# 0bf5fc14 06-Mar-2002 Sascha Schumann

SID shall be defined to name=id, if the client did not supply
a cookie.


# 8141c776 06-Mar-2002 Sascha Schumann

Merge in session API changes (carry around tsrm context)

Now PHP_SESSION_API is defined to the date of the last change,
so that externa source-code can handle changes more gracefully.


# 398b1011 06-Mar-2002 Sascha Schumann

Always initialize the track-vars


# ca59cb7c 06-Mar-2002 Sascha Schumann

Weep out all recent commits of Yasuo.

I don't have time right now to leave in the good ones and remove
only the bad ones.

There are some semantical changes which I reject, becau

Weep out all recent commits of Yasuo.

I don't have time right now to leave in the good ones and remove
only the bad ones.

There are some semantical changes which I reject, because
they aim at fixing a bug which is at a completely other location.

Then SID does not gefined anymore properly. (This broken patch
has not been sent to me at all.)

Also, there were *so* many whitespace changes which already
make these commits bogus.

show more ...


# 92facba8 06-Mar-2002 Yasuo Ohgaki

Oops. Fix compile failure


# a2fecc2d 06-Mar-2002 Yasuo Ohgaki

Using session_save_path() after starting session is obvious error.
Riase E_NOTICE error instead of E_WARNING. Since it is valid if
user uses session_save_path() with session_module_name().


# 09e6133e 06-Mar-2002 Yasuo Ohgaki

Return FALSE when session_module_name() failed. Fix a little leak.


# b17fd603 06-Mar-2002 Yasuo Ohgaki

Raise error when session module failed to open or read


# 40423348 06-Mar-2002 Yasuo Ohgaki

Remove TSRMLS_FETCH() and use TSRMLS_C/TSRMLS_D
# Need a little more work for backword compatibility


# d809d046 05-Mar-2002 Yasuo Ohgaki

Fix bug #15322 and fix a little memory leak


# 1c3c40a3 05-Mar-2002 Zeev Suraski

Make $_SESSION and $HTTP_SESSION_VARS links to each other


# 9d43b9ec 04-Mar-2002 Jon Parise

Silence warning under Solaris 8 (WorkShop Compilers 5.0 98/12/15 C 5.0).


# 7c3763d0 02-Mar-2002 Zeev Suraski

Fix another crash bug


# 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 ...


1...<<11121314151617181920>>...24