FIX #4242 Allow disabling dashes in documents
3.8 specific fix for new documents
This commit is contained in:
parent
1435a3eec7
commit
7e98cfd5b6
@ -490,7 +490,7 @@ class pdf_aurore extends ModelePDFAskPriceSupplier
|
|||||||
if ($posYAfterImage > $posYAfterDescription) $nexY=$posYAfterImage;
|
if ($posYAfterImage > $posYAfterDescription) $nexY=$posYAfterImage;
|
||||||
|
|
||||||
// Add line
|
// 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->setPage($pageposafter);
|
||||||
$pdf->SetLineStyle(array('dash'=>'1,1','color'=>array(210,210,210)));
|
$pdf->SetLineStyle(array('dash'=>'1,1','color'=>array(210,210,210)));
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user