From 151e43540a504e4f2dbdeb56ebebf60e3fb8ff8b Mon Sep 17 00:00:00 2001 From: Justin Hileman Date: Mon, 22 Mar 2010 17:41:11 -0400 Subject: [PATCH] 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. --- Mustache.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mustache.php b/Mustache.php index 3479ab0..dbac8f0 100644 --- a/Mustache.php +++ b/Mustache.php @@ -14,8 +14,8 @@ */ class Mustache { - protected $otag = '{{'; - protected $ctag = '}}'; + public $otag = '{{'; + public $ctag = '}}'; protected $tagRegEx; protected $template;