FIX #4242 Allow disabling dashes in documents
3.9 specific fix since document have moved
This commit is contained in:
parent
34f4e913d4
commit
4f9ab7da24
@ -494,7 +494,7 @@ class pdf_aurore extends ModelePDFSupplierProposal
|
||||
if ($posYAfterImage > $posYAfterDescription) $nexY=$posYAfterImage;
|
||||
|
||||
// Add line
|
||||
if (! empty($conf->global->MAIN_PDF_DASH_BETWEEN_LINES) && $i < ($nblignes - 1))
|
||||
if ($conf->global->MAIN_PDF_DASH_BETWEEN_LINES && $i < ($nblignes - 1))
|
||||
{
|
||||
$pdf->setPage($pageposafter);
|
||||
$pdf->SetLineStyle(array('dash'=>'1,1','color'=>array(80,80,80)));
|
||||
|
||||
Loading…
Reference in New Issue
Block a user