diff options
Diffstat (limited to 'includes/install.inc')
-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(); } |