Fixed #14568 -- Use keyword rather than positional arguments for form construction. Thanks to mattmcc for the report and patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14371 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
9962f352bf
commit
8bc2f2a0b5
|
@ -33,8 +33,8 @@ class FormMixin(object):
|
|||
"""
|
||||
if self.request.method in ('POST', 'PUT'):
|
||||
return form_class(
|
||||
self.request.POST,
|
||||
self.request.FILES,
|
||||
data=self.request.POST,
|
||||
files=self.request.FILES,
|
||||
initial=self.get_initial()
|
||||
)
|
||||
else:
|
||||
|
@ -84,8 +84,8 @@ class ModelFormMixin(FormMixin, SingleObjectMixin):
|
|||
"""
|
||||
if self.request.method in ('POST', 'PUT'):
|
||||
return form_class(
|
||||
self.request.POST,
|
||||
self.request.FILES,
|
||||
data=self.request.POST,
|
||||
files=self.request.FILES,
|
||||
initial=self.get_initial(),
|
||||
instance=self.object,
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue