diff options
| author | Andi Gutmans <andi@php.net> | 2000-03-30 22:38:50 +0000 |
|---|---|---|
| committer | Andi Gutmans <andi@php.net> | 2000-03-30 22:38:50 +0000 |
| commit | f9547241d56b4b9b5ecc81600e21ab55854bc7ba (patch) | |
| tree | 53935b78b78b28ab6529137e6a5ee26b35d7e7a2 /ext | |
| parent | 69a16e9693ab9dee17f97926f256137f9203e571 (diff) | |
| download | php-git-f9547241d56b4b9b5ecc81600e21ab55854bc7ba.tar.gz | |
- Fix another bug in session.c
- Start using the new PHP_GETCWD() and co. macros
Diffstat (limited to 'ext')
| -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 ef7201dd9a..0c268ede5d 100644 --- a/ext/session/session.c +++ b/ext/session/session.c @@ -889,7 +889,7 @@ PHP_FUNCTION(session_get_cookie_params) RETURN_FALSE; } - add_assoc_string(return_value, "lifetime", PS(cookie_lifetime), 1); + add_assoc_long(return_value, "lifetime", PS(cookie_lifetime)); add_assoc_string(return_value, "path", PS(cookie_path), 1); add_assoc_string(return_value, "domain", PS(cookie_domain), 1); } |
