Update default.settings.php

Don't fail on simpletest, which copies default.settings.php
This commit is contained in:
Daniel Wehner 2016-03-24 13:30:00 -07:00
parent fd3b12cf27
commit 4297c64508

View file

@ -713,7 +713,9 @@ $settings['container_yamls'][] = __DIR__ . '/services.yml';
* a local development environment, to insure that
* 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.