Changes between Initial Version and Version 2 of Ticket #9140
- Timestamp:
- Sep 18, 2008, 11:12:31 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #9140 – Description
initial v2 1 1 There is a bug in django.http.multipartparser.MultiPartParser where by if you redirect after a multipart/form-data post. This bug is avoidable if request.POST is not accessed outside of a "if request.method == 'POST':" conditional, but I feel that it is a bug none the less. 2 2 3 {{{ 3 4 ====== View that will recreate bug ======= 4 5 import from django.http import HttpResponseRedirect, HttpResponse … … 13 14 14 15 =================== 16 }}} 15 17 16 18 The solutions are to either: