You are here

function theme_fuzzysearch_score in Fuzzy Search 7

Theme fuzzysearch score.

File

./fuzzysearch.module, line 267
Fuzzysearch module.

Code

function theme_fuzzysearch_score($variables) {
  $output = '';
  $output = implode($variables['element']['#separator'], $variables['element']['child']);
  return $output;
}