feulf / raintpl3

The easiest Template Engine for PHP
https://feulf.github.io/raintpl
258 stars 57 forks source link

Function parameter bug (2) #114

Open kargnas opened 11 years ago

kargnas commented 11 years ago

Template

{$array.var|func:"Y-m-d/H:i"}

Compiled code

<?php echo func($array["var"],"Y-m-d/H); ?>

Must be:

<?php echo func($array["var"],"Y-m-d/H:i"); ?>
Natureshadow commented 5 years ago

Duplicate of #113.