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 615
<?php
function install_goto($path) {
global $base_url;
header('Location: '. $base_url .'/'. $path);
header('Cache-Control: no-cache'); // Not a permanent redirect.
exit();
}
?>Login or register to post comments 