﻿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
277	CommonMiddleware URL rewriting discards POST data	adrian@…	Adrian Holovaty	"The CommonMiddleware URL rewriting discards any POST data when it is triggered.

This code in django/middleware/common.py needs to be fixed to pass along any possible POST data with the redirect.

{{{
        if new_url != old_url:
            # Redirect
            newurl = ""%s://%s%s"" % (os.environ.get('HTTPS') == 'on' and 'https' or 'http', new_url[0], new_url[1])
            if request.GET:
                newurl += '?' + urlencode(request.GET)
            return httpwrappers.HttpResponseRedirect(newurl)
}}}

But I don't know how to fix it :("	defect	closed	Core (Other)		normal	wontfix			Unreviewed	0	0	0	0	0	0
