Mustache::$_otag and Mustache::$_ctag no longer need to be public with _setOptions added

This commit is contained in:
Woody Gilk
2011-03-01 12:13:44 -05:00
parent 8bc3b1558c
commit 9a866e9721
+2 -2
View File
@@ -88,8 +88,8 @@ class Mustache {
const SECTION_TYPES = '\^#\/'; const SECTION_TYPES = '\^#\/';
const TAG_TYPES = '#\^\/=!<>\\{&'; const TAG_TYPES = '#\^\/=!<>\\{&';
public $_otag = '{{'; protected $_otag = '{{';
public $_ctag = '}}'; protected $_ctag = '}}';
protected $_tagRegEx; protected $_tagRegEx;