You are here

function search_box_form_submit in Drupal 5

Same name and namespace in other branches
  1. 4 modules/search.module \search_box_form_submit()
  2. 6 modules/search/search.module \search_box_form_submit()
  3. 7 modules/search/search.module \search_box_form_submit()

Process a block search form submission.

Related topics

File

modules/search/search.module, line 1053
Enables site-wide keyword searching.

Code

function search_box_form_submit($form_id, $form_values) {

  // The search form relies on control of the redirect destination for its
  // functionality, so we override any static destination set in the request,
  // for example by drupal_access_denied() or drupal_not_found()
  // (see http://drupal.org/node/292565).
  if (isset($_REQUEST['destination'])) {
    unset($_REQUEST['destination']);
  }
  if (isset($_REQUEST['edit']['destination'])) {
    unset($_REQUEST['edit']['destination']);
  }
  return 'search/node/' . trim($form_values[$form_id . '_keys']);
}