Making search_form() results go to browse

Hi,

I'm currently using search_form() to put a simple search box in the header of every page. However, I'd like this search to go to the omeka/items/browse page (like the advanced search results) rather than to the omeka/items/search page. Is there a way to do this through the arguments to search_form(), or an alternative function I can call?

Thanks!
Jacob

The new search form for sitewide search can't really be used for the old item-specific search. They expect differently-named inputs.

Writing a form that goes to the browse page is very easy though, just a normal HTML form with the action pointing to items/browse, and a single <input type="text" name="search"> are all that's required for a simple keyword search.