Quote:
Originally Posted by N8
the templates are taking the "$"s and converting them to $ in the html output.
|
This is an intended feature to provide security
I don't recommend disabling it but if you should, replacing the line
$val = preg_replace( "/\\\$/" , "$" , $val );
as
//$val = preg_replace( "/\\\$/" , "$" , $val );
in wt_include.php should take care of it.