Skip to content
Snippets Groups Projects
Commit 94e3e87a authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2003578 followup by chx: twig_cache() must be FALSE in install.php...

Issue #2003578 followup by chx: twig_cache() must be FALSE in install.php registerTwig because we don't know if files folder is writable yet.
parent 6b2892bc
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -101,7 +101,7 @@ public static function registerTwig(ContainerBuilder $container) {
// @todo ensure garbage collection of expired files.
// When in the installer, twig_cache must be FALSE until we know the
// files folder is writable.
'cache' => ((MAINTENANCE_MODE != 'install') ? settings()->get('twig_cache', TRUE) : FALSE),
'cache' => drupal_installation_attempted() ? FALSE : settings()->get('twig_cache', TRUE),
'base_template_class' => 'Drupal\Core\Template\TwigTemplate',
// @todo Remove in followup issue
// @see http://drupal.org/node/1712444.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment