1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-29 17:54:29 +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( $twig = new Twig_Environment($loader, Array(
'autoescape' => false, 'autoescape' => false,
'cache' => 'templates/cache', 'cache' => "{$config['dir']['template']}/cache",
'debug' => ($config['debug'] ? true : false), 'debug' => ($config['debug'] ? true : false),
)); ));
$twig->addExtension(new Tinyboard_Twig_Extension()); $twig->addExtension(new Tinyboard_Twig_Extension());