Skip to content
Snippets Groups Projects
Commit 5514e226 authored by Tim Steiner's avatar Tim Steiner
Browse files

[gh-143] Merging from testing into staging

git-svn-id: file:///tmp/wdn_thm_drupal/branches/drupal-7.x/staging@749 20a16fea-79d4-4915-8869-1ea9d5ebf173
parent 312b2dcd
No related branches found
No related tags found
No related merge requests found
......@@ -550,6 +550,12 @@ function drupal_settings_initialize() {
global $databases, $cookie_domain, $conf, $installed_profile, $update_free_access, $db_url, $db_prefix, $drupal_hash_salt, $is_https, $base_secure_url, $base_insecure_url;
$conf = array();
// UNL change: include a "global" settings file that applies to all sites.
if (file_exists(DRUPAL_ROOT . '/sites/all/settings.php')) {
include_once DRUPAL_ROOT . '/sites/all/settings.php';
}
// End UNL change.
if (file_exists(DRUPAL_ROOT . '/' . conf_path() . '/settings.php')) {
include_once DRUPAL_ROOT . '/' . conf_path() . '/settings.php';
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment