install_goto
- Versions
- 5 – 7
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.
Code
includes/install.inc, line 924
<?php
function install_goto($path) {
global $base_url;
header('Location: ' . $base_url . '/' . $path);
header('Cache-Control: no-cache'); // Not a permanent redirect.
drupal_exit();
}
?>Login or register to post comments 