Hi,
I have a site behind IIS and Enfold Proxy (a reverse proxy filter for IIS), served from Plone (a CMS) via a WSGI stack. Users use IE7.
Somehow, requests are reaching the server with an If-Modified-Since header like this:
Thu, 27 Aug 2009 06:46:31 GMT,Thu, 27 Aug 2009 06:46:31
As you can see, there are two dates here (one with a time zone, one without), separated by commas.
The code in Plone is capable of handling two dates separated by semicolons, but this format causes it to barf.
Whilst I can work around it, I'd like to figure out where the If-Modified-Since header is coming from and how it could be comma-delimited instead of semicolon-delimited. Any ideas?
Martin