Changes between Initial Version and Version 2 of Ticket #9140


Ignore:
Timestamp:
Sep 18, 2008, 11:12:31 PM (16 years ago)
Author:
Karen Tracey
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #9140 – Description

    initial v2  
    11There 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.
    22
     3{{{
    34====== View that will recreate bug =======
    45import from django.http import HttpResponseRedirect, HttpResponse
     
    1314
    1415===================
     16}}}
    1517
    1618The solutions are to either:
Back to Top