Commit d9aaa1ca authored by Adrian Holovaty's avatar Adrian Holovaty
Browse files

Fixed #1931 -- update_object generic view no longer assumes the object's...

Fixed #1931 -- update_object generic view no longer assumes the object's get_absolute_url() doesn't change. Thanks, marcink@elksoft.pl

git-svn-id: http://code.djangoproject.com/svn/django/trunk@2951 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 2c5e9fcf
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -107,7 +107,7 @@ def update_object(request, model, object_id=None, slug=None,
        errors = manipulator.get_validation_errors(new_data)
        manipulator.do_html2python(new_data)
        if not errors:
            manipulator.save(new_data)
            object = manipulator.save(new_data)

            if not request.user.is_anonymous():
                request.user.message_set.create(message="The %s was updated successfully." % model._meta.verbose_name)