소스 검색

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;