summaryrefslogtreecommitdiff
path: root/ext/standard/head.c
diff options
context:
space:
mode:
authorRasmus Lerdorf <rasmus@php.net>2001-07-21 15:51:40 +0000
committerRasmus Lerdorf <rasmus@php.net>2001-07-21 15:51:40 +0000
commitcc44119bf6840dc4a955b7f13c7656cbbb989f5b (patch)
tree0a1c2cb82ef12457acb84a94bfe87da2e9344c7b /ext/standard/head.c
parent7ce18467614aa2339d87eac6bf8e8b50acb719ba (diff)
downloadphp-git-cc44119bf6840dc4a955b7f13c7656cbbb989f5b.tar.gz
Left-over outdated comment
Diffstat (limited to 'ext/standard/head.c')
-rw-r--r--ext/standard/head.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/standard/head.c b/ext/standard/head.c
index 3c91f228b7..c84fee46df 100644
--- a/ext/standard/head.c
+++ b/ext/standard/head.c
@@ -143,7 +143,6 @@ PHP_FUNCTION(setcookie)
sprintf(cookie, "Set-Cookie: %s=deleted; expires=%s", Z_STRVAL_PP(z_name), dt);
efree(dt);
} else {
- /* FIXME: XXX: this is not binary data safe */
sprintf(cookie, "Set-Cookie: %s=%s", Z_STRVAL_PP(z_name), (z_value && Z_STRVAL_PP(z_value)) ? encoded_value : "");
if (expires > 0) {
strcat(cookie, "; expires=");