zombor / KOstache

Logic-less View/Mustache Module for Kohana v3
MIT License
138 stars 43 forks source link

Overriding loader file $_extension doesn't work #50

Closed gregdeveloper closed 12 years ago

gregdeveloper commented 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