Ticket #15212: fix_get_actions.diff

File fix_get_actions.diff, 433 bytes (added by philomat, 13 years ago)
  • options.py

     
    547547        # want *any* actions enabled on this page.
    548548        from django.contrib.admin.views.main import IS_POPUP_VAR
    549549        if self.actions is None or IS_POPUP_VAR in request.GET:
    550             return []
     550            return SortedDict()
    551551
    552552        actions = []
    553553
Back to Top