Opened 15 years ago

Closed 15 years ago

#11713 closed (invalid)

bug in django.contrib.admin.action while delete_selected

Reported by: ngokai Owned by: nobody
Component: Uncategorized Version: 1.1
Severity: Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by Karen Tracey)

original code

modeladmin.log_deletion(request, obj.id, obj_display)

change to

modeladmin.log_deletion(request, obj.id, obj_display)

otherwise, while I delete some entity contain large text (google app engine's db.TextProperty), it tell me that the object_id is tooooo long.

Change History (1)

comment:1 by Karen Tracey, 15 years ago

Description: modified (diff)
Resolution: invalid
Status: newclosed

For the life of me I cannot see the difference between your "original" and "change", even after making them line up. Please re-open with correct details -- preferably a patch.

Note: See TracTickets for help on using tickets.
Back to Top