Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorPeter Zhang <peter@innocraft.com>2022-04-05 05:03:38 +0300
committerGitHub <noreply@github.com>2022-04-05 05:03:38 +0300
commit9d6d7a98516943c280c35a3f5f014d371734c5d0 (patch)
treec559c9069d263552f525733fed898e324d468e5a /config
parent925b2ae1de42e33bd37487384bf8e71e68280fbc (diff)
Update global.php (#19048)
fix cache wrong path
Diffstat (limited to 'config')
-rw-r--r--config/global.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/global.php b/config/global.php
index d93adad66f..c40c8fb773 100644
--- a/config/global.php
+++ b/config/global.php
@@ -35,7 +35,7 @@ return array(
'view.clearcompiledtemplates.enable' => true,
- 'twig.cache' => DI\string('path.tmp.templates'),
+ 'twig.cache' => DI\string('{path.tmp}/templates'),
'Matomo\Cache\Eager' => function (ContainerInterface $c) {
$backend = $c->get('Matomo\Cache\Backend');