From da7205eb91c6b0b1b55df0662cc6053748723403 Mon Sep 17 00:00:00 2001 From: webchick Date: Thu, 29 Sep 2011 11:15:44 -0700 Subject: [PATCH] Issue #1113588 follow-up by pillarsdotnet: Un-break multisite installations. --- includes/bootstrap.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc index 8e999121468..794f908798c 100644 --- a/includes/bootstrap.inc +++ b/includes/bootstrap.inc @@ -554,7 +554,7 @@ function conf_path($require_settings = TRUE, $reset = FALSE) { $script_name = $_SERVER['SCRIPT_FILENAME']; } $http_host = $_SERVER['HTTP_HOST']; - $conf = find_conf_path($script_name, $http_host, $require_settings); + $conf = find_conf_path($http_host, $script_name, $require_settings); return $conf; }