Hi Peter,
There was a bug in the HTML plugin for TBS.
It is fixed now, but is will be published with the next TBS release. But I can send it to you.
Nevertheless, there is a workaround: when you use MergeField() for merging 'settedFilter', then use an array of values that are converted HTML using htmlspecialchars();
I.E. :
foreach ($values as $i=>$v) {
$values[$i] = htmlspecialchars($v);
}
$TBS->MergeField('settedFilter', $values);
|