Fix cookie timestamp format #5718

See https://tools.ietf.org/html/rfc6265
This commit is contained in:
Federico Ceratto
2017-04-17 12:58:10 +01:00
committed by GitHub
parent 99d20f6112
commit 856d04c146

View File

@@ -50,7 +50,7 @@ proc setCookie*(key, value: string, expires: TimeInfo,
##
## **Note:** UTC is assumed as the timezone for ``expires``.
return setCookie(key, value, domain, path,
format(expires, "ddd',' dd MMM yyyy HH:mm:ss 'UTC'"),
format(expires, "ddd',' dd MMM yyyy HH:mm:ss 'GMT'"),
noname, secure, httpOnly)
when isMainModule: