function _acquia_search_lower in Acquia Search 6.3
Same name and namespace in other branches
- 6 acquia_search.module \_acquia_search_lower()
Convert to lower-case any keywords containing a wildcard.
1 string reference to '_acquia_search_lower'
- acquia_search_apachesolr_query_alter in ./
acquia_search.module - Implementation of hook_apachesolr_modify_query().
File
- ./
acquia_search.module, line 473 - Integration between Acquia Drupal and Acquia's hosted solr search service.
Code
function _acquia_search_lower($matches) {
return drupal_strtolower($matches[1]);
}