From 14537d94c4e9083efbd9ef9e8ed0b197afdd9ea0 Mon Sep 17 00:00:00 2001 From: Brady Miller Date: Fri, 25 Mar 2022 00:08:53 -0700 Subject: [PATCH] fix for print LBF form (#5030) --- interface/forms/LBF/printable.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/interface/forms/LBF/printable.php b/interface/forms/LBF/printable.php index 812666d04..ddd22736b 100644 --- a/interface/forms/LBF/printable.php +++ b/interface/forms/LBF/printable.php @@ -97,10 +97,10 @@ if ($PDF_OUTPUT) { 'default_font' => '', 'margin_left' => $GLOBALS['pdf_left_margin'], 'margin_right' => $GLOBALS['pdf_right_margin'], - 'margin_top' => $GLOBALS['pdf_top_margin'], - 'margin_bottom' => $GLOBALS['pdf_bottom_margin'], - 'margin_header' => '', - 'margin_footer' => '', + 'margin_top' => $GLOBALS['pdf_top_margin'] * 2, + 'margin_bottom' => $GLOBALS['pdf_bottom_margin'] * 2, + 'margin_header' => $GLOBALS['pdf_top_margin'], + 'margin_footer' => $GLOBALS['pdf_bottom_margin'], 'orientation' => $GLOBALS['pdf_layout'], 'shrink_tables_to_fit' => 1, 'use_kwt' => true, -- 2.11.4.GIT