From b0d5eeae3fb4065301375fe69eaf232181c9b859 Mon Sep 17 00:00:00 2001 From: Steve Sutton Date: Thu, 20 Sep 2018 16:47:08 -0400 Subject: [PATCH] Set bottom of the pdf to 130 Testing on Discoverkalamazoo event content from their live site and adjusting to 130 for the next page test of bottom pdf works nicely and gets all of the 8 pages for their events onto 7 pages. --- models/front/events/pdfCreator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/front/events/pdfCreator.php b/models/front/events/pdfCreator.php index 3cfcfea..9763652 100644 --- a/models/front/events/pdfCreator.php +++ b/models/front/events/pdfCreator.php @@ -18,7 +18,7 @@ $this->line_height = 10; $this->pdf_font_size = 8; $this->pdf_lft_col_x = 20; $this->pdf_rgt_col_x = 320; -$this->pdf_bottom_y = 150; +$this->pdf_bottom_y = 130; usort( $events, function($event1, $event2){ if ( $event1['starting_timestamp'] == $event2['starting_timestamp']) { -- 2.17.1