From f8fc2fb5ecdb8ada755e21755a57d70a669619ae Mon Sep 17 00:00:00 2001 From: Johan Cwiklinski Date: Tue, 19 Nov 2019 23:44:24 +0100 Subject: [PATCH] Drop subtitle in attendence sheet header; refs #1346 --- galette/lib/Galette/IO/PdfAttendanceSheet.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/galette/lib/Galette/IO/PdfAttendanceSheet.php b/galette/lib/Galette/IO/PdfAttendanceSheet.php index 3c8f63e7b..700a47dc7 100644 --- a/galette/lib/Galette/IO/PdfAttendanceSheet.php +++ b/galette/lib/Galette/IO/PdfAttendanceSheet.php @@ -82,9 +82,10 @@ class PdfAttendanceSheet extends Pdf if ($this->sheet_title !== null) { $head_title .= ' - ' . $this->sheet_title; } - if ($this->sheet_sub_title !== null) { + /* Remove to rpevent long lines */ + /*if ($this->sheet_sub_title !== null) { $head_title .= ' - ' . $this->sheet_sub_title; - } + }*/ if ($this->sheet_date !== null) { $head_title .= ' - ' . $this->sheet_date->format(__("Y-m-d")); } -- 2.39.2