diff --git a/django/contrib/admin/views/main.py b/django/contrib/admin/views/main.py
index 56462de..f97fabb 100644
a
|
b
|
class ChangeList(six.with_metaclass(RenameChangeListMethods)):
|
223 | 223 | # Perform a slight optimization: |
224 | 224 | # full_result_count is equal to paginator.count if no filters |
225 | 225 | # were applied |
226 | | if self.get_filters_params(): |
| 226 | if self.get_filters_params() or SEARCH_VAR in self.params: |
227 | 227 | full_result_count = self.root_queryset.count() |
228 | 228 | else: |
229 | 229 | full_result_count = result_count |