﻿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
10735	Comment redirect breaks if you want to send get data	Nate	nobody	"I'm making a site where you can view models in sets, and the sets are specified with GET. So you may have a url like /entries/?set=first or something. With the django comment system, you can have the form redirect by setting ""next"" in a hidden field or the like, and the comment form redirects there when it's done. However, it sends get data of its own, and assumes that the url in ""next"" doesn't already have get data. In my case it does. Thus, django comments just sticks ""?c=whatever"" on the end of my url, which is wrong. I've supplied a patch that simply checks if the url has GET data (I just search for "".*?[^/]*$"", which is probably horribly wrong, but it works for my intents and purposes), and if that matches, comments uses ""&"" instead of ""?""."		closed	contrib.comments	dev		fixed			Unreviewed	1	0	0	0	0	0
