Fix #915 Strip html tags from caption values when caption is printed out

update #922

escape js value

fix alignment
This commit is contained in:
Nicolas Le Goff
2012-10-03 12:26:39 +02:00
parent c96c89eee4
commit 04c2acffa3
2 changed files with 13 additions and 11 deletions

View File

@@ -469,7 +469,7 @@ class PDF
$t = str_replace(
array("<", ">", "&")
, array("<", ">", "&")
, $field->get_serialized_values()
, strip_tags($field->get_serialized_values())
);
$this->pdf->Write(5, $t);