Changed otag and ctag to public. Someone might possibly want to change these at the outset without passing junk in at the top of the template.

This commit is contained in:
Justin Hileman
2010-03-22 17:41:11 -04:00
parent 1aec69bb9a
commit 151e43540a
+2 -2
View File
@@ -14,8 +14,8 @@
*/
class Mustache {
protected $otag = '{{';
protected $ctag = '}}';
public $otag = '{{';
public $ctag = '}}';
protected $tagRegEx;
protected $template;