function _search_excerpt_replace

7.x search.module _search_excerpt_replace(&$text)
6.x search.module _search_excerpt_replace(&$text)

Helper function for array_walk in search_except.

1 string reference to '_search_excerpt_replace'
search_excerpt in drupal-6.x/modules/search/search.module
Returns snippets from a piece of text, with certain keywords highlighted. Used for formatting search results.

File

drupal-6.x/modules/search/search.module, line 1289
Enables site-wide keyword searching.

Code

function _search_excerpt_replace(&$text) {
  $text = preg_quote($text, '/');
}