You are here

function _acquia_search_lower in Acquia Search 6

Same name and namespace in other branches
  1. 6.3 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_modify_query in ./acquia_search.module
Implementation of hook_apachesolr_modify_query().

File

./acquia_search.module, line 225
Integration between Acquia Drupal and Acquia's hosted solr search service.

Code

function _acquia_search_lower($matches) {
  return drupal_strtolower($matches[1]);
}