Update default.settings.php
Don't fail on simpletest, which copies default.settings.php
This commit is contained in:
parent
fd3b12cf27
commit
4297c64508
|
@ -713,7 +713,9 @@ $settings['container_yamls'][] = __DIR__ . '/services.yml';
|
||||||
* a local development environment, to insure that
|
* a local development environment, to insure that
|
||||||
* the site settings remain consistent.
|
* the site settings remain consistent.
|
||||||
*/
|
*/
|
||||||
include __DIR__ . "/settings.pantheon.php";
|
if (file_exists(__DIR__ . '/settings.pantheon.php')) {
|
||||||
|
include __DIR__ . "/settings.pantheon.php";
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Load local development override configuration, if available.
|
* Load local development override configuration, if available.
|
||||||
|
|
Reference in a new issue