From a98d1d7cabc6df02faf757f8d8558e05dbad4256 Mon Sep 17 00:00:00 2001 From: Kjartan Mannes <kjartan@2.no-reply.drupal.org> Date: Sat, 20 Oct 2001 11:24:53 +0000 Subject: [PATCH] - modified the variable code so you can override site settings in the config file by setting them in a $conf variable. This will let you host several domains off the same Drupal installation with the same databases with minor differences in settings. Note: the values can not be changed by users in a GET or POST string. --- includes/common.inc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/includes/common.inc b/includes/common.inc index 644e453c7750..e5263015f7ed 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -383,9 +383,10 @@ function page_footer() { } } -$conf = conf_init(); +$config = conf_init(); -include_once "includes/$conf.php"; +unset($conf); +include_once "includes/$config.php"; include_once "includes/database.inc"; include_once "includes/variable.inc"; include_once "includes/comment.inc"; @@ -397,7 +398,7 @@ function page_footer() { include_once "includes/node.inc"; // initialize configuration variables: -$conf = variable_init(); +$conf = variable_init($conf); // initialize installed modules: module_init(); -- GitLab