Closed gregdeveloper closed 12 years ago
in Mustache_Loader_Kohana, line 16 you have:
$this->_extension = '.' . ltrim($options['extension'], '.');
This strips the . but adds it back in.
If you do:
$this->_extension = ltrim($options['extension'], '.');
It works
in Mustache_Loader_Kohana, line 16 you have:
$this->_extension = '.' . ltrim($options['extension'], '.');
This strips the . but adds it back in.
If you do:
$this->_extension = ltrim($options['extension'], '.');
It works