Ticket #2403: doc_update.diff

File doc_update.diff, 538 bytes (added by heckj@…, 18 years ago)

attaching patch to resolve exactly this

  • forms.txt

     
    321321        else:
    322322            errors = {}
    323323            # This makes sure the form accurate represents the fields of the place.
    324             new_data = place.__dict__
     324            new_data = manipulator.flatten_data()
    325325
    326326        form = forms.FormWrapper(manipulator, new_data, errors)
    327327        return render_to_response('places/edit_form.html', {'form': form, 'place': place})
Back to Top