diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-01-17 06:17:29 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-01-17 06:17:29 +0000 |
commit | 67fc0913ac8d70f1181a84bca45bcec4cf5a37e8 (patch) | |
tree | 8f33ef580ca8205e12a799271862d2a4953d713c | |
parent | c5eeccb43d415bc92947aada453dd1dd2ee411a4 (diff) | |
download | brdo-67fc0913ac8d70f1181a84bca45bcec4cf5a37e8.tar.gz brdo-67fc0913ac8d70f1181a84bca45bcec4cf5a37e8.tar.bz2 |
- #44992: ./ prefix for conf file include (faster)
-rw-r--r-- | includes/bootstrap.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc index 7072acc37..79f69fadd 100644 --- a/includes/bootstrap.inc +++ b/includes/bootstrap.inc @@ -839,7 +839,7 @@ function _drupal_bootstrap($phase) { case DRUPAL_BOOTSTRAP_DATABASE: global $db_url, $db_prefix, $base_url; $conf = array(); - require_once conf_init() .'/settings.php'; + require_once './' . conf_init() .'/settings.php'; require_once './includes/database.inc'; // Initialize the default database. db_set_active(); |