Re: Chrome log in failure
- Posted by mattlewis (admin) Feb 23, 2013
- 1243 views
gbonvehi said...
I guess there's a bug somewhere when creating the time for the cookie (maybe a date formatting setting?). If you tell me where is the repository to this I'll be happy to try to find the bug.
The "official" openeuphoria repositories are all available from the SCM link in the "Misc Menu" on the right side of the page. Or, go directly to the euweb repository.
However, I think the code is in the Webclay repository (which euweb uses): http://bitbucket.org/jcowgar/webclay
I see:
cookie &= "; expires=" & datetime:format(expires, "%a, %d-%b-%y %H:%map:%S GMT")
I suspect it should be:
cookie &= "; expires=" & datetime:format(expires, "%a, %d-%b-%y %H:%m:%S GMT")
Not sure where the extra "ap" came from.
Matt