function apachesolr_update_7008 in Apache Solr Search 8
Same name and namespace in other branches
- 7 apachesolr.install \apachesolr_update_7008()
Remove more facet-related variable deprecated by the Facet API integration.
File
- ./
apachesolr.install, line 570 - Install and related hooks for apachesolr_search.
Code
function apachesolr_update_7008() {
if (variable_get('apachesolr_update_from_6303', FALSE)) {
return NULL;
}
variable_del('apachesolr_facet_missing');
variable_del('apachesolr_facet_query_initial_limits');
variable_del('apachesolr_facet_query_sorts');
variable_del('apachesolr_facet_sort_active');
variable_del('apachesolr_operator');
}