﻿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
10824	GET infos is lost	roboter <songbf@…>	nobody	"on the django admin,i new a model with GET info,the url is like:/admin/xxapp/a/add/?name=test.[[BR]]

but when click ""Save and add another"",the new url is ""/admin/xxapp/a/add/"",""?name=test"" had losted.

i goto django/contrib/admin/options.py,find a function:

{{{
def response_add(self, request, obj, post_url_continue='../%s/'):
   ...
   elif request.POST.has_key(""_addanother""):
      self.message_user(request, msg + ' ' + (_(""You may add another %s below."") % force_unicode(opts.verbose_name)))
      return HttpResponseRedirect(request.path)
}}}

this code lost GET info,please fix.
and i write some code:

{{{
getinfos = request.GET.items()
gets = '?'
for info in getinfos:
    gets += '%s=%s&' % (info[0],info[1])

path = request.path + gets
return HttpResponseRedirect(path)
}}}






"		closed	contrib.admin	dev		duplicate	GET info		Someday/Maybe	0	0	0	0	0	0
