Closed (fixed)
Project:
Apache Solr Search
Version:
6.x-2.x-dev
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Reporter:
Created:
17 Aug 2009 at 16:11 UTC
Updated:
6 Sep 2009 at 16:40 UTC
Currently, all facet blocks go through theme_facet_list. The problem is that the theme function doesn't have a clue about even the delta. This patch adds the delta to the the theme call that way at the theme layer you can do things like
if ($delta = 'something') {
return 'something different';
}
return 'my cool thing';
| Comment | File | Size | Author |
|---|---|---|---|
| delta.patch | 3.29 KB | Scott Reynolds |
Comments
Comment #1
robertdouglass commentedHa! we're working on the same thing.
Comment #2
robertdouglass commentedThese changes need to target 6.2.
Comment #3
robertdouglass commentedComment #4
robertdouglass commentedThanks Scott!