- Patch #88600 by evo and chx: fix a infinite loop caused by install_goto().

5.x
Dries Buytaert 2006-10-12 15:20:08 +00:00
parent 373e52546d
commit e9121fb3ab
1 changed files with 2 additions and 2 deletions

View File

@ -552,8 +552,8 @@ function drupal_install_fix_file($file, $mask, $message = TRUE) {
* An installer path.
*/
function install_goto($path) {
global $base_path;
header('Location: '. $base_path . $path);
global $base_url;
header('Location: '. $base_url . '/' . $path);
exit();
}