now i want make my copyright in the footer
but i want it dynamic
such as
Copyright © 2008-<?php echo date("Y"); ?>.
its works by the PHP now i cant make it in the RAINTPL because i must assign the Y in the PHP file first
i mean
php file
$tpl->assign("Y","Y");
to use it in the html
Copyright © 2008-{$Y|date}.
this becuase
{$var|function_name:par_1,par_2}
is there any way to make it
{"Y"|date}
