Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
magic-removal: Fixed #1417 -- Fixed admin.models.LogEntry.get_admin_u…
…rl() to use new ContentType model fields. Thanks, nesh

git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2441 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Feb 28, 2006
1 parent 10d7f00 commit 18d1b81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django/contrib/admin/models.py
Expand Up @@ -48,4 +48,4 @@ def get_admin_url(self):
Returns the admin URL to edit the object represented by this log entry.
This is relative to the Django admin index page.
"""
return "%s/%s/%s/" % (self.content_type.package, self.content_type.python_module_name, self.object_id)
return "%s/%s/%s/" % (self.content_type.app_label, self.content_type.model, self.object_id)

0 comments on commit 18d1b81

Please sign in to comment.