瀏覽代碼

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.

Justin Hileman 15 年之前
父節點
當前提交
151e43540a
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      Mustache.php

+ 2 - 2
Mustache.php

@@ -14,8 +14,8 @@
  */
 class Mustache {
 
-	protected $otag = '{{';
-	protected $ctag = '}}';
+	public $otag = '{{';
+	public $ctag = '}}';
 	protected $tagRegEx;
 
 	protected $template;