Skip to content

Commit

Permalink
[#2375] fix missing facets
Browse files Browse the repository at this point in the history
  • Loading branch information
tobes committed Aug 1, 2012
1 parent 41797d2 commit 9242a44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ckan/controllers/package.py
Expand Up @@ -238,7 +238,7 @@ def pager_url(q=None, page=None):
c.facets = {}
c.page = h.Page(collection=[])
c.search_facets_limits = {}
for facet in c.facets.keys():
for facet in c.search_facets.keys():
limit = int(request.params.get('_%s_limit' % facet, 10))
c.search_facets_limits[facet] = limit
c.facet_titles = {'groups': _('Groups'),
Expand Down

0 comments on commit 9242a44

Please sign in to comment.