Commit efcb5912 authored by Jacob Kaplan-Moss's avatar Jacob Kaplan-Moss
Browse files

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
parent 15437d7a
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -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: