Skip to content

Commit

Permalink
[#2375] Facet list bugfix format param missing
Browse files Browse the repository at this point in the history
  • Loading branch information
tobes committed Aug 9, 2012
1 parent 216ac52 commit 5c65383
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ckan/templates/snippets/facet_list.html
Expand Up @@ -48,7 +48,7 @@ <h2 class="module-heading"><i class="icon-medium icon-filter"></i> {{ h.get_face
{% if h.get_param_int('_%s_limit' % name) %}
<a href="{{ h.remove_url_param('_%s_limit' % name, replace=0, extras=extras) }}" class="read-more">{{ _('Show More {facet}').format(facet=h.get_facet_title(name)) }}</a>
{% else %}
<a href="{{ h.remove_url_param('_%s_limit' % name, extras=extras) }}" class="read-more">{{ _('Show Only Popular {facet}').format(h.get_facet_title(name)) }}</a>
<a href="{{ h.remove_url_param('_%s_limit' % name, extras=extras) }}" class="read-more">{{ _('Show Only Popular {facet}').format(facet=h.get_facet_title(name)) }}</a>
{% endif %}
</p>
{% else %}
Expand Down

0 comments on commit 5c65383

Please sign in to comment.