From 70168189fb3ddee322944492c497d8026bd7577b Mon Sep 17 00:00:00 2001 From: Nathan Coad Date: Mon, 27 Jun 2016 10:44:10 +1000 Subject: [PATCH] tweak to travel report --- booking.reports.inc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/booking.reports.inc b/booking.reports.inc index a81d25a..f8443fa 100644 --- a/booking.reports.inc +++ b/booking.reports.inc @@ -499,8 +499,10 @@ function booking_report_travel() { } } else { - for ($i = 0; $i < 8; $i++) { - $this_row[] = "N/A"; + $this_row[] = "N/A"; + //put in empty fields to fill up the table columns + for ($i = 0; $i < 7; $i++) { + $this_row[] = ""; } } $rows[] = array('data' => $this_row, 'class' => array($class));