Index: modules/search.module =================================================================== RCS file: /cvs/drupal/drupal/modules/search.module,v retrieving revision 1.80 diff -u -r1.80 search.module --- modules/search.module 10 Jul 2004 15:51:48 -0000 1.80 +++ modules/search.module 13 Jul 2004 21:08:08 -0000 @@ -395,4 +395,14 @@ print theme('page', search_help()); } +/** + * Search block; creates search block in blocks listing. + */ + +function search_block_view() { + $output .= form_textfield( $title='Search in this site', $name='keys', $value='', $size=15, $maxlength=128 ); + $output .= form_submit( $value="Go" ); + return "
". form($output, "post", url("search")) ."
"; +} + ?>