From: <dai...@us...> - 2017-10-20 06:14:33
|
Revision: 7860 http://sourceforge.net/p/web-erp/reponame/7860 Author: daintree Date: 2017-10-20 06:14:30 +0000 (Fri, 20 Oct 2017) Log Message: ----------- Fix callback function ref as string Modified Paths: -------------- trunk/includes/PDFQuotationPageHeader.inc Modified: trunk/includes/PDFQuotationPageHeader.inc =================================================================== --- trunk/includes/PDFQuotationPageHeader.inc 2017-10-17 22:06:48 UTC (rev 7859) +++ trunk/includes/PDFQuotationPageHeader.inc 2017-10-20 06:14:30 UTC (rev 7860) @@ -52,7 +52,7 @@ $XPos = 46; $YPos = 566; $FontSize=14; -$myrow = array_map(html_entity_decode, $myrow); +$myrow = array_map('html_entity_decode', $myrow); $line_height = 15; $pdf->addText($XPos, $YPos, $FontSize, _('Delivery To').':' ); $pdf->addText($XPos, $YPos-$line_height*1, $FontSize, $myrow['deliverto']); |