You are here

function theme_fuzzysearch_box_form in Fuzzy Search 6

Theme the output of the search block

File

./fuzzysearch.module, line 475
Module file for fuzzysearch module.

Code

function theme_fuzzysearch_box_form($form) {
  $output .= '<div class="container-inline">' . drupal_render($form['keys']) . drupal_render($form['submit']) . '</div>';
  $output .= drupal_render($form);
  return $output;
}