function top_searches_form_alter in Top Searches 5
Same name and namespace in other branches
- 6 top_searches.module \top_searches_form_alter()
- 7 top_searches.module \top_searches_form_alter()
File
- ./
top_searches.module, line 90
Code
function top_searches_form_alter($form_id, &$form) {
if ($form_id == 'search_form' || $form_id == 'search_block_form') {
$form['#submit'] = array_merge($form['#submit'], array(
'top_searches_catch_search_keys' => array(),
));
}
}