Browse Source

Removed hidden search

Ralfp 12 years ago
parent
commit
467dc70b14
1 changed files with 0 additions and 2 deletions
  1. 0 2
      misago/apps/admin/online/views.py

+ 0 - 2
misago/apps/admin/online/views.py

@@ -30,8 +30,6 @@ class List(ListWidget):
             model = model.filter(agent__icontains=filters['useragent'])
             model = model.filter(agent__icontains=filters['useragent'])
         if filters['type'] == 'registered':
         if filters['type'] == 'registered':
             model = model.filter(user__isnull=False)
             model = model.filter(user__isnull=False)
-        if filters['type'] == 'hidden':
-            model = model.filter(hidden=True)
         if filters['type'] == 'guest':
         if filters['type'] == 'guest':
             model = model.filter(user__isnull=True)
             model = model.filter(user__isnull=True)
         if filters['type'] == 'crawler':
         if filters['type'] == 'crawler':