Merge branch 'feature/extend-mustache' into 3.0/develop

This commit is contained in:
Woody Gilk 2011-03-16 09:17:34 -05:00
commit e9c37fd6a0
2 changed files with 4 additions and 1 deletions

View file

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

View file

@ -0,0 +1,3 @@
<?php defined('SYSPATH') or die('No direct script access.');
class Kohana_Mustache extends Mustache {}