mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	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
This commit is contained in:
		| @@ -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) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user