web/views/facets.py
changeset 4320 4efd4c306746
parent 4252 6c4f109c2b03
child 4614 95ccd84c892b
--- a/web/views/facets.py	Thu Jan 21 17:03:30 2010 +0100
+++ b/web/views/facets.py	Thu Jan 21 17:38:31 2010 +0100
@@ -12,7 +12,7 @@
 from logilab.mtconverter import xml_escape
 
 from cubicweb.appobject import objectify_selector
-from cubicweb.selectors import (non_final_entity, two_lines_rset,
+from cubicweb.selectors import (non_final_entity, multi_lines_rset,
                                 match_context_prop, yes, relation_possible)
 from cubicweb.web.box import BoxTemplate
 from cubicweb.web.facet import (AbstractFacet, FacetStringWidget, RelationFacet,
@@ -30,7 +30,7 @@
 class FilterBox(BoxTemplate):
     """filter results of a query"""
     __regid__ = 'filter_box'
-    __select__ = (((non_final_entity() & two_lines_rset())
+    __select__ = (((non_final_entity() & multi_lines_rset())
                    | contextview_selector()
                    ) & match_context_prop())
     context = 'left'