Ticket #15212: fix_get_actions.diff
File fix_get_actions.diff, 433 bytes (added by , 14 years ago) |
---|
-
options.py
547 547 # want *any* actions enabled on this page. 548 548 from django.contrib.admin.views.main import IS_POPUP_VAR 549 549 if self.actions is None or IS_POPUP_VAR in request.GET: 550 return []550 return SortedDict() 551 551 552 552 actions = [] 553 553