Opened 16 years ago

Closed 16 years ago

#6926 closed (fixed)

newforms-admin ValidationError in BaseFormSet

Reported by: Mark Sundstrom Owned by: nobody
Component: Forms Version: newforms-admin
Severity: Keywords:
Cc: Triage Stage: Accepted
Has patch: yes Needs documentation: no
Needs tests: yes Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

The formset management_form is created with the passed-in prefix instead of self.prefix. This causes a ValidationError (ManagementForm data is missing or has been tampered with) when data or files is passed in, since in that case the management_form is created with self.prefix. This looks to be an oversight from a few revs back.

Attachments (1)

formsets.diff (655 bytes ) - added by Mark Sundstrom 16 years ago.
path formsets.py to fix the ValidationError

Download all attachments as: .zip

Change History (3)

by Mark Sundstrom, 16 years ago

Attachment: formsets.diff added

path formsets.py to fix the ValidationError

comment:1 by jkocherhans, 16 years ago

Needs tests: set
Triage Stage: UnreviewedAccepted

comment:2 by jkocherhans, 16 years ago

Resolution: fixed
Status: newclosed

(In [7391]) newforms-admin: Fixed #6926. Formset management forms now use the proper prefix. Thanks, msundstr.

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