Fixed #2147: file uploads within the update_object generic view now works. Thanks, parlar.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@3123 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Jacob Kaplan-Moss 2006-06-13 21:47:40 +00:00
parent 15437d7a88
commit efcb5912e4
1 changed files with 2 additions and 0 deletions

View File

@ -106,6 +106,8 @@ def update_object(request, model, object_id=None, slug=None,
if request.POST:
new_data = request.POST.copy()
if model._meta.has_field_type(FileField):
new_data.update(request.FILES)
errors = manipulator.get_validation_errors(new_data)
manipulator.do_html2python(new_data)
if not errors: