ソースを参照

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

Woody Gilk 14 年 前
コミット
9a866e9721
1 ファイル変更2 行追加2 行削除
  1. 2 2
      Mustache.php

+ 2 - 2
Mustache.php

@@ -88,8 +88,8 @@ class Mustache {
 	const SECTION_TYPES = '\^#\/';
 	const TAG_TYPES = '#\^\/=!<>\\{&';
 
-	public $_otag = '{{';
-	public $_ctag = '}}';
+	protected $_otag = '{{';
+	protected $_ctag = '}}';
 
 	protected $_tagRegEx;