Update to Drupal 8.1.0. For more information, see https://www.drupal.org/drupal-8.1.0-release-notes
This commit is contained in:
parent
b11a755ba8
commit
c0a0d5a94c
6920 changed files with 64395 additions and 57312 deletions
|
@ -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.
|
||||
|
|
|
@ -93,3 +93,15 @@ $settings['extension_discovery_scan_tests'] = TRUE;
|
|||
* using these parameters in a request to rebuild.php.
|
||||
*/
|
||||
$settings['rebuild_access'] = TRUE;
|
||||
|
||||
/**
|
||||
* Skip file system permissions hardening.
|
||||
*
|
||||
* The system module will periodically check the permissions of your site's
|
||||
* site directory to ensure that it is not writable by the website user. For
|
||||
* sites that are managed with a version control system, this can cause problems
|
||||
* when files in that directory such as settings.php are updated, because the
|
||||
* user pulling in the changes won't have permissions to modify files in the
|
||||
* directory.
|
||||
*/
|
||||
$settings['skip_permissions_hardening'] = TRUE;
|
||||
|
|
Reference in a new issue