瀏覽代碼

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;