diff options
| author | Rasmus Lerdorf <rasmus@php.net> | 2004-03-28 14:57:32 +0000 |
|---|---|---|
| committer | Rasmus Lerdorf <rasmus@php.net> | 2004-03-28 14:57:32 +0000 |
| commit | 885e837b2a141ad7097bebe2cc1464fdac304745 (patch) | |
| tree | 170404427204c994944a7eca60399bb1d351f3e6 /ext/session | |
| parent | 6a3fc10b05d0c5a5d2da123f2f0b61ea774fb1b9 (diff) | |
| download | php-git-885e837b2a141ad7097bebe2cc1464fdac304745.tar.gz | |
- Merge whitespace and trivial changes from HEAD back to the branch so the
diff between HEAD and PHP_4_3 only shows feature changes
- Fix test case for bug #27719 (TZ=EST means no DST so the test was wrong)
Diffstat (limited to 'ext/session')
| -rw-r--r-- | ext/session/session.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/session/session.c b/ext/session/session.c index bf4c495382..2356290c9a 100644 --- a/ext/session/session.c +++ b/ext/session/session.c @@ -863,7 +863,7 @@ static void php_session_send_cookie(TSRMLS_D) t = tv.tv_sec + PS(cookie_lifetime); if (t > 0) { - date_fmt = php_std_date(t); + date_fmt = php_std_date(t TSRMLS_CC); smart_str_appends(&ncookie, COOKIE_EXPIRES); smart_str_appends(&ncookie, date_fmt); efree(date_fmt); |
