Helper function for array_walk in search_keywords_split.

1 string reference to '_search_keywords_truncate'
search_keywords_split in modules/search.module
Splits a string into component words according to indexing rules.

File

modules/search.module, line 280
Enables site-wide keyword searching.

Code

function _search_keywords_truncate(&$text) {
  $text = truncate_utf8($text, 50);
}