Merge pull request #67 from paulsschwarz/develop

Do not hard code the cache directory, use available configuration instead
This commit is contained in:
Woody Gilk 2014-04-06 18:35:34 -05:00
commit 645570dc9b

View file

@ -23,7 +23,7 @@ class Kohana_Kostache {
'escape' => function($value) {
return HTML::chars($value);
},
'cache' => APPPATH.'cache/mustache',
'cache' => Kohana::$cache_dir.DIRECTORY_SEPARATOR.'mustache',
)
);