Closed (cannot reproduce)
Project:
Storm
Version:
6.x-2.x-dev
Component:
Storm Invoice
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
29 Jan 2010 at 15:12 UTC
Updated:
19 Nov 2011 at 11:40 UTC
Jump to comment: Most recent file
Comments
Comment #1
juliangb commentedProposed solution from @vagabumming in #1291542: Storm Invoice doesn't convert html special characters back to ascii:
I've resolved the issue where I need it resolved myself by editing line 629 of storminvoice.theme.inc
from this:
$pdf->MultiCell($pageWidth * .4, 0, $i->description, 1, 'L', $c, 1);to this:
$pdf->MultiCell($pageWidth * .4, 0, html_entity_decode($i->description,ENT_QUOTES), 1, 'L', $c, 1);Also, changing to 2.x branch, as that is where a fix will be applied first.
Comment #2
juliangb commentedPatch for the above change, for testing.
Comment #3
juliangb commentedI've just tested this on 2.x-dev and the characters show up fine on the pdf for me.
Please reopen if this is still a problem.