summaryrefslogtreecommitdiff
path: root/ext/session
Commit message (Collapse)AuthorAgeFilesLines
* export tsrm id for session globals.Wez Furlong2004-01-092-2/+2
|
* - Happy new year and PHP 5 for rest of the files too..foobar2004-01-084-8/+8
| | | | | # Should the LICENSE and Zend/LICENSE dates be updated too?
* - A belated happy holidays and PHP 5Andi Gutmans2004-01-084-8/+8
|
* Preserve casingMarcus Boerger2003-12-221-4/+4
|
* Incorrect test file was fixed. (Use pattern insted of absolute filename)Dmitry Stogov2003-12-161-3/+3
|
* Update test to reflect new functionality.Ilia Alshanetsky2003-12-141-0/+4
|
* Fixed bug #24693 (Allow session.use_trans_sid to be enabled/disabled fromIlia Alshanetsky2003-12-141-9/+24
| | | | | inside the script).
* - Fixed bug #26548 (Malformed HTTP dates in headers).Derick Rethans2003-12-071-1/+1
|
* Make these tests work under win32Wez Furlong2003-12-051-1/+4
|
* Add new (optional!) win32 build infrastructure.Wez Furlong2003-12-021-0/+11
| | | | | Will follow up to internals@ shortly.
* Export this so that shared session modules can use it under win32.Wez Furlong2003-12-022-2/+2
|
* Fix tests for E_STRICT and check for E_STRICT in run-tests.php.Marcus Boerger2003-11-306-9/+9
|
* - Fixed bug #25780 (ext/session: invalid session.cookie_lifetime causes ↵foobar2003-10-081-4/+8
| | | | crash in win32).
* - Always look into /usr/local before /usrfoobar2003-10-011-3/+1
| | | | | - Added breaks to make sure the preferred value is used.
* Always prefer user specified paths over the default /usr /usr/local.Ilia Alshanetsky2003-09-301-1/+1
| | | | | | This may fix compilation problems with on systems with multiple copies of the same library.
* This is only needed for Windows.foobar2003-09-251-0/+4
|
* Fixed bug #25070 (Don't forget to unlock session files on win32 beforeIlia Alshanetsky2003-09-241-0/+1
| | | | | | | | | | closing them). Regions should be locked only briefly and should be unlocked before closing a file or exiting the program. On Win32 locked files that are closed without being explicitly unlocked will be unlocked only when "system resources become avaliable".
* Alias session_commit to session_write_close, a more intuitive nameSascha Schumann2003-09-211-0/+1
| | | | | for the functionality.
* Fix a segfault which occured when using a storage format not capableSascha Schumann2003-08-291-10/+17
| | | | | | | | | | 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
* \n at the end of the message is not neededAndrey Hristov2003-08-281-1/+1
|
* format string fixSascha Schumann2003-08-281-1/+1
|
* - Prevent crash if non-existing save/serializer handler is tried to be usedfoobar2003-08-261-23/+31
| | | | | - Added the registered serializers information to MINFO.
* Fixed bug #25084 (Make refer check not dependant on register_globals)Ilia Alshanetsky2003-08-141-3/+4
|
* Added missing skip conditionIlia Alshanetsky2003-08-141-0/+2
|
* emalloc -> safe_emallocIlia Alshanetsky2003-08-121-1/+1
|
* Fixed bug #22245 (References inside $_SESSION not being handled).Ilia Alshanetsky2003-08-111-1/+1
|
* MFB proper fix for #24592Sascha Schumann2003-07-221-7/+6
|
* Fixed bug #24592 (Possible crash in session extnsion, with NULL values)Ilia Alshanetsky2003-07-212-3/+39
|
* fix this test when using a save_handler other than files...Sterling Hughes2003-07-021-0/+1
|
* MFBSascha Schumann2003-06-131-2/+1
|
* Fix the test. (second session init call produces a notice)foobar2003-06-131-1/+2
|
* updating license information in the headers.James Cox2003-06-108-24/+24
|
* Print NOTICE upon session_start being called while another session isSascha Schumann2003-06-101-1/+3
| | | | | active
* Fix testsMarcus Boerger2003-05-315-24/+24
|
* MFB: fix protofoobar2003-05-311-1/+1
|
* MFB: Always send a new session cookie upon regenerating idfoobar2003-05-311-1/+1
|
* Fix the way we create references to (sometimes non-)existingSascha Schumann2003-05-151-0/+2
| | | | | | | variables. Credits go to Rob Richards <rrichards@digarc.com> and Zeev
* Fix types of bug_compat entriesSascha Schumann2003-05-101-2/+2
| | | | | | PR: #21312 Submitted by: Rob Richards <rrichards@ctindustries.net>
* fix TSRMStanislav Malyshev2003-04-271-1/+1
|
* MFB 4_3:Stanislav Malyshev2003-04-271-10/+10
| | | | | | | | | | | | | Fix very nasty bug - session cookie kills one of the cookies set before it on certain non-Apache SAPIs. # for example, this code: # <? # setcookie("abc", 1); # setcookie("def", 2); # session_start(); # ?> # would output only 'def' cookie on CGI and ISAPI
* dividend -> divisorSascha Schumann2003-04-052-3/+3
| | | | | Submitted by: Jesus M. Castagnetto <jmcastagnetto@yahoo.com>
* Eliminate some TSRMLS_FETCH() calls. Tested with Win32 build of SAPI/CGI and ↵Sebastian Bergmann2003-03-251-1/+1
| | | | SAPI/CLI on Win32.
* Renamed OnUpdateInt -> OnUpdateLong to prevent further misunderstandings.foobar2003-03-071-8/+8
| | | | | | # Intentionally left out any 'alias' for it, this way 3rd party extension # maintainers will really NOTICE the change.
* Add JIT initialization for _SERVER and _ENVZeev Suraski2003-03-021-1/+1
| | | | | | (it's less important for the others, even though it should be fairly easy now too)
* generally urlencode parametersSascha Schumann2003-02-201-1/+1
|
* Refactor new-session-id codeSascha Schumann2003-02-182-28/+35
|
* Remember whether to send a cookie, so that we send out the correctSascha Schumann2003-02-182-9/+15
| | | | | session id. Also improve check for active session
* add session_regenerate_id()Sascha Schumann2003-02-182-0/+16
|
* support setting the filemode using session.save_pathSascha Schumann2003-02-111-10/+43
|
* use appropiate prefixes in the ps_module structure so we don't clashSascha Schumann2003-02-112-23/+23
| | | | | with syscalls