We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 822a2fb commit 32dab06Copy full SHA for 32dab06
src/ppeco/tplpp/Template.php
@@ -28,7 +28,7 @@ public function compile(): string{
28
while(preg_match('/{{([^.]+?)}}/', $this->input, $output,
29
PREG_OFFSET_CAPTURE)){
30
$this->input = substr($this->input, 0, $output[0][1])
31
- .exec($this, $output[1][0])
+ .exec($this, html_entity_decode($output[1][0]))
32
.substr($this->input, $output[0][1]+strlen($output[0][0]), strlen($this->input));
33
}
34
0 commit comments