1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-26 00:10:55 +01:00

replace hardcoded "templates/" directory with appropriate config directive

This commit is contained in:
Savetheinternet 2011-10-06 14:28:56 +11:00
parent bb9475a4e3
commit 21b81d08e1

View File

@ -85,7 +85,7 @@
$twig = new Twig_Environment($loader, Array(
'autoescape' => false,
'cache' => 'templates/cache',
'cache' => "{$config['dir']['template']}/cache",
'debug' => ($config['debug'] ? true : false),
));
$twig->addExtension(new Tinyboard_Twig_Extension());