install_goto

5 install.inc install_goto($path)
6 install.inc install_goto($path)
7 install.inc install_goto($path)
8 install.inc install_goto($path)

Send the user to a different installer page.

This issues an on-site HTTP redirect. Messages (and errors) are erased.

Parameters

$path: An installer path.

2 calls to install_goto()

1 string reference to 'install_goto'

File

includes/install.inc, line 1010

Code

function install_goto($path) {
  global $base_url;
  include_once DRUPAL_ROOT . '/includes/common.inc';
  header('Location: ' . $base_url . '/' . $path);
  header('Cache-Control: no-cache'); // Not a permanent redirect.
  drupal_exit();
}
Login or register to post comments