From: <tim...@us...> - 2010-10-27 19:21:20
|
Revision: 4117 http://web-erp.svn.sourceforge.net/web-erp/?rev=4117&view=rev Author: tim_schofield Date: 2010-10-27 19:21:14 +0000 (Wed, 27 Oct 2010) Log Message: ----------- Tim: class.pdf.php - Fix bug in html_entity_decode() function call Modified Paths: -------------- trunk/doc/Change.log.html trunk/includes/class.pdf.php Modified: trunk/doc/Change.log.html =================================================================== --- trunk/doc/Change.log.html 2010-10-27 18:22:59 UTC (rev 4116) +++ trunk/doc/Change.log.html 2010-10-27 19:21:14 UTC (rev 4117) @@ -1,5 +1,6 @@ <p><font SIZE=4 COLOR=BLUE><b>webERP Change Log</b></font></p> <p></p> +<p>27/10/10 Tim: class.pdf.php - Fix bug in html_entity_decode() function call</p> <p>27/10/10 d.k shukla: ManualPurchaseOrdering.html - Improvements to purchase ordering manual</p> <p>27/10/10 Tim: WorkOrderEntry.php - When the quantities are changed, then the correct quantities are updated, and the date picker chooses the correct date.</p> <p>27/10/10 Tim: header.inc - Correct for non ascii characters</p> Modified: trunk/includes/class.pdf.php =================================================================== --- trunk/includes/class.pdf.php 2010-10-27 18:22:59 UTC (rev 4116) +++ trunk/includes/class.pdf.php 2010-10-27 19:21:14 UTC (rev 4117) @@ -247,7 +247,7 @@ //some special characters are html encoded //this code serves to make them appear human readable in pdf file - $txt = html_entity_decode($txt, ENT_QUOTES, UTF-8); + $txt = html_entity_decode($txt, ENT_QUOTES, 'UTF-8'); $this->x = $xb; $this->y = $this->h - $yb - $h; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |