function apachesolr_update_7004 in Apache Solr Search 7
Same name and namespace in other branches
- 8 apachesolr.install \apachesolr_update_7004()
Update apachesolr_failure variable.
File
- ./
apachesolr.install, line 468 - Install and related hooks for apachesolr_search.
Code
function apachesolr_update_7004() {
if (variable_get('apachesolr_update_from_6303', FALSE)) {
return NULL;
}
$failure = variable_get('apachesolr_failure', NULL);
switch ($failure) {
case 'show_error':
variable_set('apachesolr_failure', 'apachesolr:show_error');
break;
case 'show_drupal_results':
variable_set('apachesolr_failure', 'node');
break;
case 'show_no_results':
variable_set('apachesolr_failure', 'apachesolr:show_no_results');
break;
}
}