1 drupal.inc drupal_redirect_form($form_state)

Redirects the user to a URL after a form has been processed.

Deprecated

since 1.0.0

See also

backdrop_redirect_form()

Related topics

File

core/includes/drupal.inc, line 1817
Contains constants and function wrappers for Drupal 7.x compatibility.

Code

function drupal_redirect_form($form_state) {
  watchdog_deprecated_function('drupal', __FUNCTION__);
  backdrop_redirect_form($form_state);
}