Skip to content

Commit

Permalink
Fixed #2955 -- Fixed incorrect verbose-name display in admin delete_s…
Browse files Browse the repository at this point in the history
…tage message. Thanks for the patch, mattimustang@gmail.com

git-svn-id: http://code.djangoproject.com/svn/django/trunk@3921 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Oct 24, 2006
1 parent 7988a48 commit b0a8a75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django/contrib/admin/views/main.py
Expand Up @@ -454,7 +454,7 @@ def _get_deleted_objects(deleted_objects, perms_needed, user, obj, opts, current
if related.opts.admin and has_related_objs:
p = '%s.%s' % (related.opts.app_label, related.opts.get_delete_permission())
if not user.has_perm(p):
perms_needed.add(rel_opts_name)
perms_needed.add(related.opts.verbose_name)
for related in opts.get_all_related_many_to_many_objects():
if related.opts in opts_seen:
continue
Expand Down

0 comments on commit b0a8a75

Please sign in to comment.