Skip to content
Snippets Groups Projects
Commit e9121fb3 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

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

parent 373e5254
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -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();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment