Skip to content
Snippets Groups Projects
Commit 452feca6 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Merge pull request #4249 from GPCsolutions/3.8-4242

FIX #4242 Allow disabling dashes in documents
parents 5f4947e3 7e98cfd5
No related branches found
No related tags found
No related merge requests found
......@@ -490,7 +490,7 @@ class pdf_aurore extends ModelePDFAskPriceSupplier
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(210,210,210)));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment