is it possible to add in a system so tbs will escape strings for you?
I am not sure how to best do it...
syst_standard_mail = good old testin' string;
template
'{var._syst_standard_mail}'
becomes
'good old testin\' string'
in the output
|
I thought of several ways to do it:
'{var._syst_standard_mail;escape=';echar=\}'
(Where \ could be default for echar)
or
'{var._syst_standard_mail;escape}'
looks if the tbs is included within a string (but this seems to me to be nearly impossible to implement correctly}
I am not sure how you look at this problem, because it could very well be my own PHP responsibility to do this right, and we do want to keep programming code out of the template, but then again, it is not really application logic or anything...