Skip to content

Commit

Permalink
fix(ZMS-3253): renable twig cache
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Fink authored and Tom Fink committed Nov 15, 2024
1 parent 3eb8912 commit 46c0af9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion zmsadmin/config.example.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class App extends \BO\Zmsadmin\Application
const IDENTIFIER = ZMS_IDENTIFIER;
const DEBUG = false;
// Per default uses dir ./cache
const TWIG_CACHE = '/cache/';
//const TWIG_CACHE = false;

/**
* HTTP url for api
Expand Down
2 changes: 1 addition & 1 deletion zmsadmin/src/Zmsadmin/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class Application extends \BO\Slim\Application

const DEBUG = false;

const TWIG_CACHE = false;
const TWIG_CACHE = '/cache/';

const TEMPLATE_PATH = ZMS_ADMIN_TEMPLATE_FOLDER;

Expand Down

0 comments on commit 46c0af9

Please sign in to comment.