diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-10-12 15:20:08 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-10-12 15:20:08 +0000 |
commit | e9121fb3abed6952182f1ec3819289a3840556fa (patch) | |
tree | cc293c9049a8ed483edb5558fd5eb1c73f9463db | |
parent | 373e52546d92f7089b334c072a356d7f28a4dca9 (diff) | |
download | brdo-e9121fb3abed6952182f1ec3819289a3840556fa.tar.gz brdo-e9121fb3abed6952182f1ec3819289a3840556fa.tar.bz2 |
- Patch #88600 by evo and chx: fix a infinite loop caused by install_goto().
-rw-r--r-- | includes/install.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/install.inc b/includes/install.inc index 59d1903a5..2aa93767e 100644 --- a/includes/install.inc +++ b/includes/install.inc @@ -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(); } |