Changes between Initial Version and Version 1 of Ticket #14747
- Timestamp:
- Nov 30, 2010, 9:47:04 AM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #14747
- Property Triage Stage Unreviewed → Accepted
-
Ticket #14747 – Description
initial v1 1 1 Some mobile browsers send localized time in 'HTTP_IF_MODIFIED_SINCE' like: '???, 21 ?? 2010 05:55:07 GMT', which can not be correctly parsed and cause exceptions: 2 2 {{{ 3 3 File "/usr/local/lib/python2.6/dist-packages/django/core/handlers/base.py", line 100, in get_response 4 4 response = callback(request, *callback_args, **callback_kwargs) … … 14 14 15 15 TypeError: 'NoneType' object is unsubscriptable 16 }}}