You are here

function theme_search_theme_form in Drupal 4

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

Theme the theme search form.

Related topics

File

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

Code

function theme_search_theme_form($form) {
  return '<div id="search" class="container-inline">' . form_render($form) . '</div>';
}