Added new $options parameter to Kostache::_stache() which will appear in v6.0.0 of mustache.php

This commit is contained in:
Woody Gilk 2011-03-01 13:52:00 -05:00
parent 6a8103ce84
commit d632be3fd4

View file

@ -209,7 +209,9 @@ abstract class Kohana_Kostache {
*/
protected function _stash($template, Kostache $view, array $partials)
{
return new Mustache($template, $view, $partials);
return new Mustache($template, $view, $partials, array(
'charset' => Kohana::$charset,
));
}
/**