updated core to 8.6.17

This commit is contained in:
2019-11-12 16:42:53 +01:00
parent 80b19b1a81
commit c9f5886fc8
5 changed files with 3330 additions and 3294 deletions
+27 -3
View File
@@ -1,5 +1,7 @@
<?php
// @codingStandardsIgnoreFile
/**
* @file
* Local development override configuration feature.
@@ -53,7 +55,7 @@ $config['system.performance']['css']['preprocess'] = FALSE;
$config['system.performance']['js']['preprocess'] = FALSE;
/**
* Disable the render cache (this includes the page cache).
* Disable the render cache.
*
* Note: you should test with the render cache enabled, to ensure the correct
* cacheability metadata is present. However, in the early stages of
@@ -62,10 +64,32 @@ $config['system.performance']['js']['preprocess'] = FALSE;
* This setting disables the render cache by using the Null cache back-end
* defined by the development.services.yml file above.
*
* Do not use this setting until after the site is installed.
* Only use this setting once the site has been installed.
*/
# $settings['cache']['bins']['render'] = 'cache.backend.null';
/**
* Disable caching for migrations.
*
* Uncomment the code below to only store migrations in memory and not in the
* database. This makes it easier to develop custom migrations.
*/
# $settings['cache']['bins']['discovery_migration'] = 'cache.backend.memory';
/**
* Disable Internal Page Cache.
*
* Note: you should test with Internal Page Cache enabled, to ensure the correct
* cacheability metadata is present. However, in the early stages of
* development, you may want to disable it.
*
* This setting disables the page cache by using the Null cache back-end
* defined by the development.services.yml file above.
*
* Only use this setting once the site has been installed.
*/
# $settings['cache']['bins']['page'] = 'cache.backend.null';
/**
* Disable Dynamic Page Cache.
*
@@ -82,7 +106,7 @@ $config['system.performance']['js']['preprocess'] = FALSE;
* During development it can be useful to install test extensions for debugging
* purposes.
*/
$settings['extension_discovery_scan_tests'] = TRUE;
# $settings['extension_discovery_scan_tests'] = TRUE;
/**
* Enable access to rebuild.php.