Fixed #162 -- Admin log now records repr() before calling delete(), instead of after calling it() -- thanks, mfenniak@pobox.com!

git-svn-id: http://code.djangoproject.com/svn/django/trunk@324 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2005-07-26 22:43:27 +00:00
parent b23c63bcfe
commit 3c0c0e7317
1 changed files with 1 additions and 1 deletions

View File

@ -1056,8 +1056,8 @@ def delete_stage(request, app_label, module_name, object_id):
if request.POST: # The user has already confirmed the deletion.
if perms_needed:
raise PermissionDenied
obj.delete()
obj_repr = repr(obj)
obj.delete()
log.log_action(request.user.id, opts.get_content_type_id(), object_id, obj_repr, log.DELETION)
request.user.add_message('The %s "%s" was deleted successfully.' % (opts.verbose_name, obj_repr))
return HttpResponseRedirect("../../")