ソースを参照

Fixed protected property in PragmaEscaped example (should be public)

Justin Hileman 15 年 前
コミット
98ec8ea11a
1 ファイル変更1 行追加1 行削除
  1. 1 1
      examples/pragma_unescaped/PragmaUnescaped.php

+ 1 - 1
examples/pragma_unescaped/PragmaUnescaped.php

@@ -1,5 +1,5 @@
 <?php
 
 class PragmaUnescaped extends Mustache {
-	protected $vs = 'Bear > Shark';
+	public $vs = 'Bear > Shark';
 }