﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
15679	POST data handling bug	vkryachko	nobody	"django.http.HttpRequest._load_post_and_files() has a bug, which was introduced after 1.2. The problem is that POST does not get populated if request.raw_post_data has been accessed before it.

To reproduce it:
{{{#!python
def my_view(request,*args,**kwargs):
    raw_post = request.raw_post_data
    post = request.POST # post is an empty QueryDict
}}}
I think he problem here is in this condition http://code.djangoproject.com/browser/django/trunk/django/http/__init__.py#L265 , which to me makes sense only in multipart request.

I've attached a patch to fix it."		closed	HTTP handling	dev		fixed	regression		Accepted	1	0	1	1	0	0
