You are here

function theme_search_block_form in Drupal 5

Same name and namespace in other branches
  1. 4 modules/search.module \theme_search_block_form()

Theme the block search form.

Related topics

File

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

Code

function theme_search_block_form($form) {
  return '<div class="container-inline">' . drupal_render($form) . '</div>';
}