From 55cd02567099767ff9e48a8be24157db6a934ba0 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Fri, 8 Feb 2008 04:22:00 +0000 Subject: [PATCH] queryset-refactor: Fixed a place where admin was poking about under the covers and I had moved the internal feature it was relying on. git-svn-id: http://code.djangoproject.com/svn/django/branches/queryset-refactor@7095 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/contrib/admin/views/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/contrib/admin/views/main.py b/django/contrib/admin/views/main.py index c45d7e640e..1e66b56e0f 100644 --- a/django/contrib/admin/views/main.py +++ b/django/contrib/admin/views/main.py @@ -627,7 +627,7 @@ class ChangeList(object): # Perform a slight optimization: Check to see whether any filters were # given. If not, use paginator.hits to calculate the number of objects, # because we've already done paginator.hits and the value is cached. - if isinstance(self.query_set._filters, models.Q) and not self.query_set._filters.kwargs: + if not self.query_set.query.where: full_result_count = result_count else: full_result_count = self.manager.count()