diff --git a/sites/default/default.settings.php b/sites/default/default.settings.php index b1f95e201..7f180ab97 100644 --- a/sites/default/default.settings.php +++ b/sites/default/default.settings.php @@ -693,6 +693,17 @@ * example.org, with all subdomains included. */ +/** + * Include the Pantheon-specific settings file. + * + * n.b. The settings.pantheon.php file makes some changes + * that affect all envrionments that this site + * exists in. Always include this file, even in + * a local development environment, to insure that + * the site settings remain consistent. + */ +include __DIR__ . "/settings.pantheon.php"; + /** * Load local development override configuration, if available. * @@ -703,6 +714,6 @@ * * Keep this code block at the end of this file to take full effect. */ -# if (file_exists(__DIR__ . '/settings.local.php')) { -# include __DIR__ . '/settings.local.php'; -# } +if (file_exists(__DIR__ . '/settings.local.php')) { + include __DIR__ . '/settings.local.php'; +} diff --git a/sites/default/settings.php b/sites/default/settings.php index 9a625fa10..020fbaffd 100755 --- a/sites/default/settings.php +++ b/sites/default/settings.php @@ -1,5 +1,20 @@