Opened 18 years ago

Closed 17 years ago

Last modified 17 years ago

#1619 closed defect (worksforme)

FileField upload broken in generic views

Reported by: Hegemon Owned by: Jacob
Component: Generic views Version:
Severity: major Keywords: FileField upload generic views
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

create_update.py is missing following lines in two places after "new_data = request.POST.copy()"

        opts = mod.Klass._meta
        if opts.has_field_type(meta.FileField):
            new_data.update(request.FILES)

Change History (5)

comment:1 by anonymous, 18 years ago

milestone: Version 0.92Version 0.91

comment:2 by anonymous, 18 years ago

milestone: Version 0.91Version 0.92

is this still an issue?

comment:3 by Gary Wilson <gary.wilson@…>, 18 years ago

milestone: Version 0.92Version 1.0

0.92 is long gone.

comment:4 by John D'Agostino <john.dagostino@…>, 17 years ago

Resolution: worksforme
Status: newclosed

Tested - This doesn't seem like an issue any more. Closing.

comment:5 by (none), 17 years ago

milestone: Version 1.0

Milestone Version 1.0 deleted

Note: See TracTickets for help on using tickets.
Back to Top