1
0
mirror of https://github.com/django/django.git synced 2025-04-25 09:44:36 +00:00

Fixed #9882 -- Added alters_data = True to BaseModelForm.save method, thanks dc.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@9678 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Gary Wilson Jr 2008-12-23 05:50:51 +00:00
parent 7bf9626adb
commit f0d44e44bd

View File

@ -318,6 +318,8 @@ class BaseModelForm(BaseForm):
fail_message = 'changed'
return save_instance(self, self.instance, self._meta.fields, fail_message, commit)
save.alters_data = True
class ModelForm(BaseModelForm):
__metaclass__ = ModelFormMetaclass