function theme_search_theme_form in Drupal 5
Same name and namespace in other branches
- 4 modules/search.module \theme_search_theme_form()
Theme the theme search form.
Related topics
File
- modules/
search/ search.module, line 1071 - Enables site-wide keyword searching.
Code
function theme_search_theme_form($form) {
return '<div id="search" class="container-inline">' . drupal_render($form) . '</div>';
}