Skip to content
Snippets Groups Projects
Commit 651a42b9 authored by Neil Drumm's avatar Neil Drumm :wave:
Browse files

#67648 by craines and pwolanin, always go to search pages for searching...

#67648 by craines and pwolanin, always go to search pages for searching (particularly a problem on 404 pages)
parent cd430165
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -1044,6 +1044,9 @@ function search_box($form_id = 'search_theme_form') {
'#attributes' => array('title' => t('Enter the terms you wish to search for.')),
);
$form['submit'] = array('#type' => 'submit', '#value' => t('Search'));
// Always go to the search page since the search form is not guaranteed to be
// on every page.
$form['#action'] = url('search/node');
return drupal_get_form($form_id, $form, 'search_box_form');
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment