]> granicus.if.org Git - php/commit
Fix very nasty bug - session cookie kills one of the cookies
authorStanislav Malyshev <stas@php.net>
Sun, 27 Apr 2003 16:02:44 +0000 (16:02 +0000)
committerStanislav Malyshev <stas@php.net>
Sun, 27 Apr 2003 16:02:44 +0000 (16:02 +0000)
commit5762d246835d12234ac6c36cbb08f153ad7bcdbb
tree9895ce9086e16f3dc73b2ef2e7c65df3e3b2bdba
parent71a63bc126011a6d80c26755923956aadfcadc1f
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
ext/session/session.c