From 9a866e972124ca69eb84acb8f997cad31906b9fd Mon Sep 17 00:00:00 2001 From: Woody Gilk Date: Tue, 1 Mar 2011 12:13:44 -0500 Subject: [PATCH] Mustache::$_otag and Mustache::$_ctag no longer need to be public with _setOptions added --- Mustache.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mustache.php b/Mustache.php index 96544a1..b9e3862 100644 --- a/Mustache.php +++ b/Mustache.php @@ -88,8 +88,8 @@ class Mustache { const SECTION_TYPES = '\^#\/'; const TAG_TYPES = '#\^\/=!<>\\{&'; - public $_otag = '{{'; - public $_ctag = '}}'; + protected $_otag = '{{'; + protected $_ctag = '}}'; protected $_tagRegEx;