Bug #486
UserTrack Cookies: IE 6.0 doesn't like the quotes embedded in mod_usertrack.c
| Status: | Fixed | Start: | ||
| Priority: | Normal | Due date: | ||
| Assigned to: | - | % Done: | 0% |
|
| Category: | mod_usertrack | |||
| Target version: | 1.4.9 | |||
| Pending: | Resolution: | fixed |
||
Description
The cookies sent by mod_usertrack include quotes for the value:
Set-Cookie: TRACKID="65656453e34c345b"
This quotes are accepted by the mozilla range of browsers, but not by Internet Explorer 6 (I haven't tried older versions).
Internet Explorer want's them urlencoded, which is how PHP construct them.
Reading the RFC 2109: http://www.ietf.org/rfc/rfc2109.txt is difficult to know whether the quotes are accepted or not, but the facts are that IE 6.0 doesn't accept them.
Removing the quotes solves the problem.
-- vicente
Associated revisions
removed quotes around values
- that was against the RFC 2109
- it broke IE
- if fixes #486