@@ -55,7 +55,7 @@ public function getCompileValues()
55
55
'ISO-8859-1 ' ,
56
56
array (
57
57
"\nclass Monkey extends Mustache_Template " ,
58
- '$value = $this->resolveValue($context->find( \'name \'), $context, $indent ); ' ,
58
+ '$value = $this->resolveValue($context->find( \'name \'), $context); ' ,
59
59
'$buffer .= $indent . call_user_func($this->mustache->getEscape(), $value); ' ,
60
60
'return $buffer; ' ,
61
61
),
@@ -75,7 +75,7 @@ public function getCompileValues()
75
75
'ISO-8859-1 ' ,
76
76
array (
77
77
"\nclass Monkey extends Mustache_Template " ,
78
- '$value = $this->resolveValue($context->find( \'name \'), $context, $indent ); ' ,
78
+ '$value = $this->resolveValue($context->find( \'name \'), $context); ' ,
79
79
'$buffer .= $indent . htmlspecialchars($value, ' . ENT_COMPAT . ', \'ISO-8859-1 \'); ' ,
80
80
'return $buffer; ' ,
81
81
),
@@ -95,7 +95,7 @@ public function getCompileValues()
95
95
'ISO-8859-1 ' ,
96
96
array (
97
97
"\nclass Monkey extends Mustache_Template " ,
98
- '$value = $this->resolveValue($context->find( \'name \'), $context, $indent ); ' ,
98
+ '$value = $this->resolveValue($context->find( \'name \'), $context); ' ,
99
99
'$buffer .= $indent . htmlspecialchars($value, ' . ENT_QUOTES . ', \'ISO-8859-1 \'); ' ,
100
100
'return $buffer; ' ,
101
101
),
@@ -122,9 +122,9 @@ public function getCompileValues()
122
122
array (
123
123
"\nclass Monkey extends Mustache_Template " ,
124
124
"\$buffer .= \$indent . 'foo \n'; " ,
125
- '$value = $this->resolveValue($context->find( \'name \'), $context, $indent ); ' ,
125
+ '$value = $this->resolveValue($context->find( \'name \'), $context); ' ,
126
126
'$buffer .= htmlspecialchars($value, ' . ENT_COMPAT . ', \'UTF-8 \'); ' ,
127
- '$value = $this->resolveValue($context->last(), $context, $indent ); ' ,
127
+ '$value = $this->resolveValue($context->last(), $context); ' ,
128
128
'$buffer .= \'\\\'bar \\\'\'; ' ,
129
129
'return $buffer; ' ,
130
130
),
0 commit comments