From: Derick Rethans Date: Wed, 24 Jul 2002 10:03:49 +0000 (+0000) Subject: - MFH for fix for bug #16626 X-Git-Tag: php-4.2.3RC1~61 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b5d1bf2a671fcc7f9fc57e62531bf78858975788;p=php - MFH for fix for bug #16626 --- diff --git a/ext/standard/head.c b/ext/standard/head.c index 3663cae898..e69905725a 100644 --- a/ext/standard/head.c +++ b/ext/standard/head.c @@ -121,7 +121,7 @@ PHPAPI int php_setcookie(char *name, int name_len, char *value, int value_len, t strcat(cookie, "; secure"); } - return sapi_add_header(cookie, strlen(cookie), 0); + return sapi_add_header_ex(cookie, strlen(cookie), 0, 0 TSRMLS_CC); }