1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

mod_lua: Don't quote values in cookies; Make IE happy again [#56734]

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1611741 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Daniel Gruno
2014-07-18 18:12:12 +00:00
parent 5c5e8b71ff
commit 2c676c90ee

View File

@@ -2083,13 +2083,13 @@ static int lua_set_cookie(lua_State *L)
if (expires > 0) { if (expires > 0) {
rv = apr_rfc822_date(cdate, apr_time_from_sec(expires)); rv = apr_rfc822_date(cdate, apr_time_from_sec(expires));
if (rv == APR_SUCCESS) { if (rv == APR_SUCCESS) {
strexpires = apr_psprintf(r->pool, "Expires=\"%s\";", cdate); strexpires = apr_psprintf(r->pool, "Expires=%s;", cdate);
} }
} }
/* Create path segment */ /* Create path segment */
if (path != NULL && strlen(path) > 0) { if (path != NULL && strlen(path) > 0) {
strpath = apr_psprintf(r->pool, "Path=\"%s\";", path); strpath = apr_psprintf(r->pool, "Path=%s;", path);
} }
/* Create domain segment */ /* Create domain segment */