Django

Code

Changeset 5373

Show
Ignore:
Timestamp:
05/28/07 06:54:05 (1 year ago)
Author:
mtredinnick
Message:

unicode: Fixed decoding problems in POST when a form upload was part of a form.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/branches/unicode/django/http/__init__.py

    r5342 r5373  
    7070    raw_message += '\r\n\r\n' + post_data 
    7171    msg = email.message_from_string(raw_message) 
    72     POST = MultiValueDict(
     72    POST = QueryDict('', mutable=True
    7373    FILES = MultiValueDict() 
    7474    for submessage in msg.get_payload():